https://issues.dlang.org/show_bug.cgi?id=16978
Issue ID: 16978
Summary: [REG2.072.0] pragma(lib) is broken with rdmd
Product: D
Version: D2
Hardware: All
OS: Linux
Status: NEW
Severity: regression
Priority: P1
Component: tools
Assignee: [email protected]
Reporter: [email protected]
////////////////////////// test.d //////////////////////////
pragma(lib, "lzma");
extern(C) uint lzma_version_number();
void main()
{
import std.stdio;
writefln("LZMA version is 0x%08X", lzma_version_number);
}
////////////////////////////////////////////////////////////
Introduced in https://github.com/D-Programming-Language/tools/pull/194.
--