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
|
/*
TEST_OUTPUT:
---
fail_compilation/fail10534.d(28): Error: 'a' is not of arithmetic type, it is a int delegate()
fail_compilation/fail10534.d(28): Error: 'b' is not of arithmetic type, it is a int delegate()
fail_compilation/fail10534.d(29): Error: 'a' is not of arithmetic type, it is a int delegate()
fail_compilation/fail10534.d(29): Error: 'b' is not of arithmetic type, it is a int delegate()
fail_compilation/fail10534.d(30): Error: 'a' is not of arithmetic type, it is a int delegate()
fail_compilation/fail10534.d(30): Error: 'b' is not of arithmetic type, it is a int delegate()
fail_compilation/fail10534.d(31): Error: 'a' is not of arithmetic type, it is a int delegate()
fail_compilation/fail10534.d(31): Error: 'b' is not of arithmetic type, it is a int delegate()
fail_compilation/fail10534.d(36): Error: 'a' is not of arithmetic type, it is a int function()
fail_compilation/fail10534.d(36): Error: 'b' is not of arithmetic type, it is a int function()
fail_compilation/fail10534.d(37): Error: 'a' is not of arithmetic type, it is a int function()
fail_compilation/fail10534.d(37): Error: 'b' is not of arithmetic type, it is a int function()
fail_compilation/fail10534.d(38): Error: 'a' is not of arithmetic type, it is a int function()
fail_compilation/fail10534.d(38): Error: 'b' is not of arithmetic type, it is a int function()
fail_compilation/fail10534.d(39): Error: 'a' is not of arithmetic type, it is a int function()
fail_compilation/fail10534.d(39): Error: 'b' is not of arithmetic type, it is a int function()
---
*/
void main()
{
{
int delegate() a = ()=>5;
int delegate() b = ()=>5;
auto c1 = a + b; // passes (and will crash if c1() called)
auto c2 = a - b; // passes (and will crash if c2() called)
auto c3 = a / b; // a & b not of arithmetic type
auto c4 = a * b; // a & b not of arithmetic type
}
{
int function() a = ()=>5;
int function() b = ()=>5;
auto c1 = a + b;
auto c2 = a - b;
auto c3 = a / b;
auto c4 = a * b;
}
}
|