changeset 3382:5155726ed732

<kmc> echo $\'main() { foo: int x = 3; goto foo; }\\n\' > a.c && gcc a.c
author HackBot
date Wed, 07 Aug 2013 00:34:05 +0000
parents 6c1921ed1fd2
children 16a27e548783
files a.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/a.c	Wed Aug 07 00:32:29 2013 +0000
+++ b/a.c	Wed Aug 07 00:34:05 2013 +0000
@@ -1,2 +1,2 @@
-main() { int x; x = 3; int y; return x + y; }
+main() { foo: int x = 3; goto foo; }