Changeset 226
- Timestamp:
- 08/02/06 14:40:51 (2 years ago)
- Files:
-
- trunk/buildtestdebug.d (added)
- trunk/test/linktest2.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/test/linktest2.d
r224 r226 67 67 68 68 // exception test from module function 69 auto exceptionTest = testLibrary.getDExport!(void function(),"test.testmodule.exceptionTest 2")();70 try{69 auto exceptionTest = testLibrary.getDExport!(void function(),"test.testmodule.exceptionTest")(); 70 71 71 exceptionTest(); 72 }catch(Exception e){ 73 Stdout.println("Exception Test Passed. %s",e.toString()); 74 } 72 75 73 76 74 Stdout.println("Done.");
