Skip to content

Commit f1a5d6a

Browse files
committed
Make functions non-empty so that the test remains stable under skip cleanup
1 parent f1d787b commit f1a5d6a

File tree

7 files changed

+3
-3
lines changed

7 files changed

+3
-3
lines changed

jbmc/regression/jbmc/virtual8/A.class

7 Bytes
Binary file not shown.

jbmc/regression/jbmc/virtual8/B.class

7 Bytes
Binary file not shown.

jbmc/regression/jbmc/virtual8/C.class

7 Bytes
Binary file not shown.

jbmc/regression/jbmc/virtual8/D.class

0 Bytes
Binary file not shown.

jbmc/regression/jbmc/virtual8/E.class

0 Bytes
Binary file not shown.
7 Bytes
Binary file not shown.

jbmc/regression/jbmc/virtual8/Test.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ public static void main() {
1010
}
1111

1212
class A {
13-
void f() { }
13+
int f() { return 0; }
1414
}
1515

1616

1717
class B extends A {
18-
void f() { }
18+
int f() { return 0; }
1919
}
2020

2121
class C extends A {
22-
void f() { }
22+
int f() { return 0; }
2323
}
2424

2525
class D extends C {

0 commit comments

Comments
 (0)