annotate tests/t08.good @ 75:980ed7cb620a

More multiline comment fixes. It looks like the only rational way to handle multiline comments is to treat the newlines as fully part of the comment text.
author David A. Holland
date Mon, 10 Jun 2013 19:56:55 -0400
parents c24cbfa44f81
children da557b87be61
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
28
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
1
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
2 int d =
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
3 0
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
4 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
5 int e =
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
6 0
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
7 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
8 int f =
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
9 0
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
10 ;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
11 int
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
12 main()
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
13 {
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
14 int a, b, c;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
15 a = 2 > 1 ? 0 : 0 ? 1 : 1;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
16 b = (2 > 1 ? 0 : 0) ? 1 : 1;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
17 c = 2 > 1 ? 0 : (0 ? 1 : 1);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
18 printf("%d %d %d\n", a, b, c);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
19 printf("%d %d %d\n", d, e, f);
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
20 return 0;
8a955e3dda2c two more tests, more fixes
David A. Holland
parents:
diff changeset
21 }