(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test22685.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);
}