mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
213 B
D
14 lines
213 B
D
// REQUIRED_ARGS: -unittest
|
|
module issue19925;
|
|
|
|
unittest {
|
|
with (S) {
|
|
a(); // Compiles!
|
|
b(); // Fails!
|
|
}
|
|
}
|
|
|
|
struct S {
|
|
static void a() {}
|
|
static void opDispatch(string name)() {}
|
|
}
|