1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
// { dg-options "-Wno-deprecated" }
import core.stdc.stdio : fprintf, stderr;
// Make sure basic stuff works with future Throwable.message
class NoMessage : Throwable
{
@nogc @safe pure nothrow this(string msg, Throwable next = null)
{
super(msg, next);
}
}
class WithMessage : Throwable
{
@nogc @safe pure nothrow this(string msg, Throwable next = null)
{
super(msg, next);
}
override const(char)[] message() const
{
return "I have a custom message.";
}
}
class WithMessageNoOverride : Throwable
{
@nogc @safe pure nothrow this(string msg, Throwable next = null)
{
super(msg, next);
}
const(char)[] message() const
{
return "I have a custom message and no override.";
}
}
class WithMessageNoOverrideAndDifferentSignature : Throwable
{
@nogc @safe pure nothrow this(string msg, Throwable next = null)
{
super(msg, next);
}
immutable(char)[] message()
{
return "I have a custom message and I'm nothing like Throwable.message.";
}
}
void test(Throwable t)
{
try
{
throw t;
}
catch (Throwable e)
{
fprintf(stderr, "%.*s ", cast(int)e.message.length, e.message.ptr);
}
}
void main()
{
test(new NoMessage("exception"));
test(new WithMessage("exception"));
test(new WithMessageNoOverride("exception"));
test(new WithMessageNoOverrideAndDifferentSignature("exception"));
fprintf(stderr, "\n");
}
|