ldc/tests/linking/link_internally.d
Johan Engelen 34048d2cf1
Add internal_lld Lit-test feature. (#2952)
This prevents test failures when LDC is built without internal LLD.
2018-12-22 22:03:21 +01:00

10 lines
153 B
D

// REQUIRES: Windows
// REQUIRES: internal_lld
// RUN: %ldc -link-internally -run %s
void main()
{
import std.stdio;
writeln("Hello world");
}