annotate compile/extern_04.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents f50665879ed4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
151
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
1 // $HeadURL$
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
2 // $Date$
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
3 // $Author$
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
4
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
5 module dstress.compile.extern_04;
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
6
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
7 version(Windows){
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
8 extern (Pascal) int test(char c);
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
9
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
10 int check(){
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
11 return test('a');
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
12 }
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
13 }