d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / objc_class3.d
blobcf2480e9549f6215abb7f2ee75089c9ba5f7c884
1 // EXTRA_OBJC_SOURCES:
2 /*
3 TEST_OUTPUT:
4 ---
5 fail_compilation/objc_class3.d(15): Error: function `objc_class3.A.test!int.test` template cannot have an Objective-C selector attached
6 fail_compilation/objc_class3.d(21): Error: template instance `objc_class3.A.test!int` error instantiating
7 ---
8 */
10 import core.attribute : selector;
12 extern (Objective-C)
13 extern class A
15 void test(T)(T a) @selector("test:"); // selector defined for template
18 void test()
20 A a;
21 a.test(3);