mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
15 lines
228 B
D
15 lines
228 B
D
// https://issues.dlang.org/show_bug.cgi?id=23837
|
|
// EXTRA_FILES: imports/mainx23837.c
|
|
|
|
import imports.mainx23837;
|
|
|
|
struct TexturePacker
|
|
{
|
|
stbrp_context _context;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
auto res = TexturePacker();
|
|
return 0;
|
|
}
|