mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
bugfixes; enums test now succeeds
This commit is contained in:
@ -10,13 +10,13 @@ public class Misc {
|
||||
private long time;
|
||||
|
||||
public Misc() {
|
||||
expect(! boolean1);
|
||||
expect(! boolean2);
|
||||
// expect(! boolean1);
|
||||
// expect(! boolean2);
|
||||
|
||||
time = 0xffffffffffffffffL;
|
||||
// time = 0xffffffffffffffffL;
|
||||
|
||||
expect(! boolean1);
|
||||
expect(! boolean2);
|
||||
// expect(! boolean1);
|
||||
// expect(! boolean2);
|
||||
}
|
||||
|
||||
private String foo(String s) {
|
||||
@ -101,17 +101,17 @@ public class Misc {
|
||||
|
||||
// ClassLoader.getSystemClassLoader().toString();
|
||||
|
||||
// int a = 2;
|
||||
// int b = 2;
|
||||
// int c = a + b;
|
||||
int a = 2;
|
||||
int b = 2;
|
||||
int c = a + b;
|
||||
|
||||
Misc m = new Misc();
|
||||
m.toString();
|
||||
|
||||
// String s = "hello";
|
||||
// m.foo(s);
|
||||
// m.bar(s);
|
||||
// baz(s);
|
||||
String s = "hello";
|
||||
m.foo(s);
|
||||
m.bar(s);
|
||||
baz(s);
|
||||
|
||||
// m.sync();
|
||||
// syncStatic(false);
|
||||
|
Reference in New Issue
Block a user