From: Roman Zimmermann Date: Sat, 24 Apr 2010 22:23:34 +0000 (+0200) Subject: Missing definition of structs X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=testub10.git;a=commitdiff_plain;h=0184df5464284307ded7d21b92dcd983a814ef8b Missing definition of structs Checks wheter all idents that appear behind a dot in Lexpr are properly defined in a struct section. --- diff --git a/ag/torotil_01.3 b/ag/torotil_01.3 new file mode 100644 index 0000000..84d6480 --- /dev/null +++ b/ag/torotil_01.3 @@ -0,0 +1,9 @@ +struct + one struct_not defined +end; + +method main(a b) + var something := 0x42; + var the := 0x42; + the.one.missing_struct := something; +end;