mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
11 lines
194 B
D
11 lines
194 B
D
// EXTRA_FILES: imports/test22685b.d imports/test22685c.d
|
|
|
|
module test22685;
|
|
|
|
import imports.test22685b;
|
|
|
|
void twoArgs(alias a, alias b)() { }
|
|
|
|
void main() {
|
|
twoArgs!(a => 1, overloaded);
|
|
}
|