mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
9 lines
159 B
D
9 lines
159 B
D
// EXTRA_OBJC_SOURCES: objc_self_test.m
|
|
// REQUIRED_ARGS: -L-framework -LFoundation
|
|
|
|
extern (C) int getValue();
|
|
|
|
void main ()
|
|
{
|
|
assert(getValue() == 3);
|
|
}
|