mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
13 lines
144 B
D
13 lines
144 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail91.d(12): Error: struct `fail91.S` unknown size
|
|
---
|
|
*/
|
|
|
|
struct S;
|
|
|
|
void main()
|
|
{
|
|
S* s = new S();
|
|
}
|