aboutsummaryrefslogtreecommitdiff
path: root/testcases/ref.c
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2014-04-11 16:04:48 +0800
committerTeddy <ted.sybil@gmail.com>2014-04-11 16:04:48 +0800
commite2a62314728202e71a4daa2b7ff418994334fb83 (patch)
treefc08f679900bed17070c520bddc74546c396bbf9 /testcases/ref.c
parenta19c85b2b0c70db4e87efe129da38ea870f8971c (diff)
array length checking
Diffstat (limited to 'testcases/ref.c')
-rw-r--r--testcases/ref.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/testcases/ref.c b/testcases/ref.c
new file mode 100644
index 0000000..4644127
--- /dev/null
+++ b/testcases/ref.c
@@ -0,0 +1,4 @@
+int main() {
+ int a, b;
+ &(a + b);
+}