Files
ldc/tangotests/fail/q.d
2008-05-06 07:26:27 +02:00

23 lines
338 B
D

class E : Exception
{
this(char[] msg)
{
super(msg);
}
char[] toString()
{
return super.toString();
}
}
extern(C) int printf(char*, ...);
void main()
{
auto e = new E("hello world");
auto msg = e.toString();
printf("message should be: '%.*s'\n", msg.length, msg.ptr);
throw e;
}