blob: e71b4784f7ca012a32d802a54e8d6ab5f7c78d58 [file] [log] [blame]
module test20181;
struct InversionList
{
ubyte[] byCodepoint() { return null; }
}
void main()
{
static foreach (ch; InversionList().byCodepoint) { }
}