dmd/compiler/test/fail_compilation/objc_tupleof.d
2022-09-06 15:03:04 +09:00

17 lines
398 B
D

// EXTRA_OBJC_SOURCES:
/* TEST_OUTPUT:
---
fail_compilation/objc_tupleof.d(16): Error: no property `tupleof` for type `objc_tupleof.Foo`
fail_compilation/objc_tupleof.d(16): `tupleof` is not available for members of Objective-C classes. Please use the Objective-C runtime instead
---
*/
extern (Objective-C) class Foo
{
int a;
}
void bar()
{
Foo foo;
auto a = foo.tupleof[0];
}