mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
13 lines
371 B
D
13 lines
371 B
D
// EXTRA_OBJC_SOURCES:
|
|
/* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/objc_offsetof.d(13): Error: no property `offsetof` for member `a` of type `int`
|
|
fail_compilation/objc_offsetof.d(13): `offsetof` is not available for members of Objective-C classes. Please use the Objective-C runtime instead
|
|
---
|
|
*/
|
|
extern (Objective-C) class Foo
|
|
{
|
|
int a;
|
|
}
|
|
|
|
enum o = Foo.a.offsetof;
|