annotate nocompile/a/alias_36_E.d @ 1319:81222734adf3

sed'ed replacement of new:...http.d.puremagic.co... with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:58:06 +0000
parents 93511f726375
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1268
93511f726375 partial review
thomask
parents:
diff changeset
1 // $HeadURL$
93511f726375 partial review
thomask
parents:
diff changeset
2 // $Date$
93511f726375 partial review
thomask
parents:
diff changeset
3 // $Author$
93511f726375 partial review
thomask
parents:
diff changeset
4
93511f726375 partial review
thomask
parents:
diff changeset
5 // @author@ <h3r3tic@mat.uni.torun.pl>
93511f726375 partial review
thomask
parents:
diff changeset
6 // @date@ 2006-05-23
1319
81222734adf3 sed'ed replacement of new:...http.d.puremagic.co... with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1268
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=153
1268
93511f726375 partial review
thomask
parents:
diff changeset
8
93511f726375 partial review
thomask
parents:
diff changeset
9 // __DSTRESS_ELINE__ 19
93511f726375 partial review
thomask
parents:
diff changeset
10
93511f726375 partial review
thomask
parents:
diff changeset
11 module dstress.nocompile.a.alias_36_E;
93511f726375 partial review
thomask
parents:
diff changeset
12
93511f726375 partial review
thomask
parents:
diff changeset
13 template bar(T) {
93511f726375 partial review
thomask
parents:
diff changeset
14 void foo() {
93511f726375 partial review
thomask
parents:
diff changeset
15 }
93511f726375 partial review
thomask
parents:
diff changeset
16 }
93511f726375 partial review
thomask
parents:
diff changeset
17
93511f726375 partial review
thomask
parents:
diff changeset
18 alias bar!(long).foo foo;
93511f726375 partial review
thomask
parents:
diff changeset
19 alias bar!(char).foo foo;
93511f726375 partial review
thomask
parents:
diff changeset
20
93511f726375 partial review
thomask
parents:
diff changeset
21 void main() {
93511f726375 partial review
thomask
parents:
diff changeset
22 foo();
93511f726375 partial review
thomask
parents:
diff changeset
23 }
93511f726375 partial review
thomask
parents:
diff changeset
24