mirror of
https://github.com/Noratrieb/coldsquare.git
synced 2026-01-15 17:05:09 +01:00
restructure structure
This commit is contained in:
parent
1a920ab9af
commit
1186e70e69
22 changed files with 196 additions and 24 deletions
13
cs_parser/testdata/Test2.java
vendored
Normal file
13
cs_parser/testdata/Test2.java
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
class Test2 {
|
||||
int myField;
|
||||
|
||||
public static void main(String[] args) {
|
||||
int i = 0;
|
||||
i++;
|
||||
new Test2().print(i);
|
||||
}
|
||||
|
||||
void print(int i) {
|
||||
System.out.println(i);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue