Skip to content

Commit 657d8d8

Browse files
committed
+missing test class for package test
1 parent db38e58 commit 657d8d8

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package Package1;
2+
3+
public class Class1 {
4+
public int m() {
5+
return 42;
6+
}
7+
8+
public static void main(String[] args) {
9+
Package1.Class1 c = new Package1.Class1();
10+
System.out.println( c.m() );
11+
}
12+
13+
}
14+

0 commit comments

Comments
 (0)