From f25c47db1ae7659785ef59964e353304dc5b01ee Mon Sep 17 00:00:00 2001 From: Audun Wilhelmsen Date: Fri, 16 Jan 2015 22:31:43 +0100 Subject: [PATCH] Add test for issue #1946 --- tests/vm/tldconst.nim | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/vm/tldconst.nim diff --git a/tests/vm/tldconst.nim b/tests/vm/tldconst.nim new file mode 100644 index 0000000000..9eabb75259 --- /dev/null +++ b/tests/vm/tldconst.nim @@ -0,0 +1,14 @@ +# Passes if it compiles +# From issue #1946 + +type + Part = object + index: int ## array index of argument to be accessed + +proc foobar(): int = + var x: Part + if x.index < high(int): + discard + 0 + +const x = foobar() \ No newline at end of file