mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
20 lines
264 B
D
20 lines
264 B
D
// EXTRA_SOURCES: imports/inline2a.d
|
|
// PERMUTE_ARGS:
|
|
// REQUIRED_ARGS: -O -release -inline
|
|
|
|
import imports.inline2a;
|
|
|
|
class Foo
|
|
{
|
|
this ()
|
|
{
|
|
Primes.lookup(2);
|
|
}
|
|
}
|
|
|
|
|
|
int main()
|
|
{
|
|
Primes.lookup(2);
|
|
return 0;
|
|
}
|