mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
13 lines
189 B
D
13 lines
189 B
D
// EXTRA_FILES: imports/bar10378.d
|
|
int writeln() { return 3; }
|
|
|
|
struct S {
|
|
import imports.bar10378;
|
|
void abc() { assert(writeln() == 3); }
|
|
}
|
|
|
|
|
|
void main() {
|
|
S s;
|
|
s.abc();
|
|
}
|