mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
18 lines
292 B
D
18 lines
292 B
D
// PERMUTE_ARGS:
|
|
// REQUIRED_ARGS: -Icompilable/extra-files
|
|
// EXTRA_FILES: extra-files/imp9057.d extra-files/imp9057_2.d
|
|
|
|
struct Bug9057(T)
|
|
{
|
|
T x;
|
|
}
|
|
|
|
void test9507() {
|
|
import imp9057;
|
|
Bug9057!(BugInt) xxx;
|
|
}
|
|
|
|
void test9507_2() {
|
|
import imp9057_2;
|
|
Bug9057!(BugInt) xxx;
|
|
}
|