annotate tests/mini/compile_bug26.d @ 1610:4f63d530861f

Merge DMD r276: bugzilla 2229 ICE(template.c) instantiating an invalid... bugzilla 2229 ICE(template.c) instantiating an invalid variadic template with more than one argument. --- dmd/template.c | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-)
author Leandro Lucarella <llucax@gmail.com>
date Wed, 06 Jan 2010 15:18:21 -0300
parents fc098100ecc7
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
52
0c77619e803b [svn r56] Initial support for TypeInfo.
lindquist
parents:
diff changeset
1 module bug26;
0c77619e803b [svn r56] Initial support for TypeInfo.
lindquist
parents:
diff changeset
2
0c77619e803b [svn r56] Initial support for TypeInfo.
lindquist
parents:
diff changeset
3 extern int i;
0c77619e803b [svn r56] Initial support for TypeInfo.
lindquist
parents:
diff changeset
4
0c77619e803b [svn r56] Initial support for TypeInfo.
lindquist
parents:
diff changeset
5 void main()
0c77619e803b [svn r56] Initial support for TypeInfo.
lindquist
parents:
diff changeset
6 {
0c77619e803b [svn r56] Initial support for TypeInfo.
lindquist
parents:
diff changeset
7 int j = i;
0c77619e803b [svn r56] Initial support for TypeInfo.
lindquist
parents:
diff changeset
8 }