mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
13 lines
164 B
D
13 lines
164 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail14416.d(13): Error: template `S(T)` does not have property `sizeof`
|
|
---
|
|
*/
|
|
|
|
struct S(T)
|
|
{
|
|
int x;
|
|
}
|
|
|
|
enum n = S.sizeof;
|