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