dmd/compiler/test/compilable/test20181.d
2022-07-09 18:53:07 +02:00

11 lines
161 B
D

module test20181;
struct InversionList
{
ubyte[] byCodepoint() { return null; }
}
void main()
{
static foreach (ch; InversionList().byCodepoint) { }
}