annotate compile/extern_08.d @ 1599:d37b19f7e8bb

Move run/c/case_01 to nocompile.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 17:28:31 +0200
parents 174de95adb17
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
309
174de95adb17 extern(C++) is now documented
thomask
parents: 157
diff changeset
5 module dstress.compile.extern_05;
151
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
6
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
7 extern (C++) int test(char c);
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
8
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
9 int check(){
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
10 return test('a');
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
11 }