mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
10 lines
165 B
D
10 lines
165 B
D
// https://issues.dlang.org/show_bug.cgi?id=24338
|
|
|
|
enum Foo: char[4]
|
|
{
|
|
elem = "test"
|
|
}
|
|
|
|
immutable a = [Foo.elem];
|
|
immutable b = [Foo.elem];
|
|
immutable c = a ~ b;
|