Changeset 796
- Timestamp:
- 12/12/10 04:50:54 (14 years ago)
- Files:
-
- trunk/test/compilable/b33.d (modified) (1 diff)
- trunk/test/compilable/callconv.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/test/compilable/b33.d
r573 r796 1 1 // EXTRA_SOURCES: imports/b33a.d 2 2 // PERMUTE_ARGS: 3 3 4 4 module b33; 5 5 6 6 private import imports.b33a; 7 7 8 int fn()8 size_t fn() 9 9 { 10 10 return find( "123" ); 11 11 } 12 12 trunk/test/compilable/callconv.d
r545 r796 1 1 // PERMUTE_ARGS: 2 3 import core.stdc.stdarg; 2 4 3 5 struct ABC 4 6 { 5 7 int x[4]; 6 8 } 7 9 8 10 ABC abc; 9 11 10 12 int x,y,z; 11 13 12 14 extern (Pascal): 13 15 ABC test1(int xx, int yy, int zz) 14 16 { 15 17 x = xx; 16 18 y = yy; 17 19 z = zz; 18 20 return abc; 19 21 } 20 22 21 23 extern (Pascal):
