annotate nocompile/sizeof_08.d @ 228:a3cb1d622f37

updated sizeof tests
author thomask
date Mon, 03 Jan 2005 18:00:19 +0000
parents
children f87ba6507260
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
228
a3cb1d622f37 updated sizeof tests
thomask
parents:
diff changeset
1 // $HeadURL$
a3cb1d622f37 updated sizeof tests
thomask
parents:
diff changeset
2 // $Date$
a3cb1d622f37 updated sizeof tests
thomask
parents:
diff changeset
3 // $Author$
a3cb1d622f37 updated sizeof tests
thomask
parents:
diff changeset
4
a3cb1d622f37 updated sizeof tests
thomask
parents:
diff changeset
5 module dstress.nocompile.sizeof_08;
a3cb1d622f37 updated sizeof tests
thomask
parents:
diff changeset
6
a3cb1d622f37 updated sizeof tests
thomask
parents:
diff changeset
7 class MyClass{
a3cb1d622f37 updated sizeof tests
thomask
parents:
diff changeset
8 size_t sizeof(){
a3cb1d622f37 updated sizeof tests
thomask
parents:
diff changeset
9 return 8;
a3cb1d622f37 updated sizeof tests
thomask
parents:
diff changeset
10 }
a3cb1d622f37 updated sizeof tests
thomask
parents:
diff changeset
11 }