comparison nocompile/new_16.d @ 378:e555e1460d7e

added tests for custom allocators
author thomask
date Sat, 02 Apr 2005 10:27:50 +0000
parents
children
comparison
equal deleted inserted replaced
377:58d40daf8407 378:e555e1460d7e
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // __DSTRESS_ELINE__ 11
6
7 module dstress.nocompile.new_16;
8
9 class MyClass{
10 void test(){
11 new(size_t s){
12 void* v;
13 return v;
14 }
15 }
16 }