Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test154/A_in.js')
-rw-r--r--tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test154/A_in.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test154/A_in.js b/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test154/A_in.js
new file mode 100644
index 0000000..3d716c3
--- /dev/null
+++ b/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Formatter/test154/A_in.js
@@ -0,0 +1,19 @@
+package test1;
+import java.util.Vector;
+public class E {
+ private class EInner {
+ public int inner(int i) {
+ }
+ }
+ private int fField1;
+ private int fField2;
+ public void foo1() {
+ fField1 = fField2;
+ if (fField1 == 0) {
+ fField2++;
+ }
+ EInner inner = new EInner();
+ }
+ public int foo1(int i) {
+ }
+} \ No newline at end of file

Back to the top