summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigrationByThreadLocal/languageLevel/before/Test.java
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/typeMigration/testData/refactoring/typeMigrationByThreadLocal/languageLevel/before/Test.java')
-rw-r--r--plugins/typeMigration/testData/refactoring/typeMigrationByThreadLocal/languageLevel/before/Test.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/typeMigration/testData/refactoring/typeMigrationByThreadLocal/languageLevel/before/Test.java b/plugins/typeMigration/testData/refactoring/typeMigrationByThreadLocal/languageLevel/before/Test.java
new file mode 100644
index 000000000000..9039f28e9617
--- /dev/null
+++ b/plugins/typeMigration/testData/refactoring/typeMigrationByThreadLocal/languageLevel/before/Test.java
@@ -0,0 +1,11 @@
+class Test {
+ int i;
+
+ void foo() {
+ i++;
+ ++i;
+ i--;
+ --i;
+ if (i == 0);
+ }
+} \ No newline at end of file