comparison 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
comparison
equal deleted inserted replaced
123:7f9a0a58394b 124:a939ec89fc72
1 module bug78;
2
3 void main()
4 {
5 typedef int int_t = 42;
6 int_t i;
7 assert(i == int_t.init);
8 }