aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/05.c
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-03-08 21:52:17 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-03-08 21:52:17 +0000
commit3e145bf08b1ffcccb4df8f2fc34f5bb95b5b250c (patch)
treef4bce6cd2f20cd69e7c23001d31ea596aafcf125 /c_compiler/test/in/05.c
parent1e0edabcca97b60371d84879ad69f569eb9127f5 (diff)
downloadCompiler-3e145bf08b1ffcccb4df8f2fc34f5bb95b5b250c.tar.gz
Compiler-3e145bf08b1ffcccb4df8f2fc34f5bb95b5b250c.zip
Adding extra test case and slight mod to classes
Diffstat (limited to 'c_compiler/test/in/05.c')
-rw-r--r--c_compiler/test/in/05.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/c_compiler/test/in/05.c b/c_compiler/test/in/05.c
new file mode 100644
index 0000000..546012c
--- /dev/null
+++ b/c_compiler/test/in/05.c
@@ -0,0 +1,6 @@
+char *glob;
+
+int main() {
+ glob = "Yann";
+ return 0;
+}