Skip to content

Commit d0d03c9

Browse files
author
Daniel Kroening
committed
Merge branch 'danpoe-nondet-init-bug'
2 parents 65ba613 + 42db2fe commit d0d03c9

File tree

4 files changed

+32
-0
lines changed

4 files changed

+32
-0
lines changed
281 Bytes
Binary file not shown.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
class Other
3+
{
4+
public void fail()
5+
{
6+
assert i == 0;
7+
}
8+
9+
private int i;
10+
}
11+
12+
class Other2 extends Other
13+
{
14+
private int j;
15+
}
16+
17+
public class Main
18+
{
19+
public static void main(String[] args)
20+
{
21+
Other o = new Other();
22+
}
23+
}
24+
524 Bytes
Binary file not shown.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
CORE
2+
Main.class
3+
--function "Other.fail:()V" --show-goto-functions
4+
^SIGNAL=0$
5+
MALLOC.*Other
6+
struct_init.*Other.fail
7+
--
8+
^warning: ignoring

0 commit comments

Comments
 (0)