diff test/bug78.d @ 124:a939ec89fc72 trunk

[svn r128] function local typedefs were not working
author lindquist
date Wed, 28 Nov 2007 03:34:37 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/bug78.d	Wed Nov 28 03:34:37 2007 +0100
@@ -0,0 +1,8 @@
+module bug78;
+
+void main()
+{
+    typedef int int_t = 42;
+    int_t i;
+    assert(i == int_t.init);
+}
\ No newline at end of file