blob: d75d1bc44e7290215fe59f8d1f2525d871f38d1a [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail9766.d(14): Error: cannot interpret Foo!int at compile time
fail_compilation/fail9766.d(17): Error: alignment must be an integer positive power of 2, not -1
fail_compilation/fail9766.d(20): Error: alignment must be an integer positive power of 2, not 0
fail_compilation/fail9766.d(23): Error: alignment must be an integer positive power of 2, not 3
fail_compilation/fail9766.d(26): Error: alignment must be an integer positive power of 2, not 2147483649u
---
*/
template Foo(T) {}
align(Foo!int)
struct S9766a {}
align(-1)
struct S9766b {}
align(0)
struct S9766c {}
align(3)
struct S9766d {}
align((1u << 31) + 1)
struct S9766e {}