diff options
Diffstat (limited to 'tests/projects/qualitygate/xoo-sample/src/sample/Sample2.xoo')
-rw-r--r-- | tests/projects/qualitygate/xoo-sample/src/sample/Sample2.xoo | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/projects/qualitygate/xoo-sample/src/sample/Sample2.xoo b/tests/projects/qualitygate/xoo-sample/src/sample/Sample2.xoo new file mode 100644 index 00000000000..6c1b6459c34 --- /dev/null +++ b/tests/projects/qualitygate/xoo-sample/src/sample/Sample2.xoo @@ -0,0 +1,12 @@ +package sample; + +public class Sample { + + public Sample(int i) { + int j = i++; + } + + private String myMethod2() { + return "hello"; + } +} |