mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
12 lines
298 B
D
12 lines
298 B
D
// EXTRA_FILES: imports/template13478a.d imports/template13478b.d
|
|
|
|
/// Tests emission of templates also referenced in speculative contexts.
|
|
/// Failure triggered with -inline.
|
|
module template13478;
|
|
|
|
import imports.template13478a;
|
|
import imports.template13478b;
|
|
|
|
int main() {
|
|
return foo!int();
|
|
}
|