Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
compilable
/
test61.d
blob: e2700d6586d3655998e9db266b6a85f7e9cb5ee6 [
file
] [
log
] [
blame
]
// PERMUTE_ARGS:
// EXTRA_FILES: imports/test61a.d
import
imports
.
test61a
;
alias
imports
.
test61a
.
bar bar
;
mixin
(
`
enum FooB { fooB };
void bar(FooB x) {}
`
);
void
test
()
{
bar
(
FooA
.
fooA
);
bar
(
FooB
.
fooB
);
}