mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
10 lines
298 B
D
10 lines
298 B
D
// https://issues.dlang.org/show_bug.cgi?id=23947
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/issue23947.d(10): Error: function `imports.issue23947a.Class.handle` of type `void(X x)` is not accessible from module `issue23947`
|
|
---
|
|
*/
|
|
import imports.issue23947a;
|
|
|
|
void main() { Class.init.handle(X.init); }
|