blob: 36c5fd89a1eb8a2faffa8261f710dad67f3df06e [file] [log] [blame]
/* TEST_OUTPUT:
---
fail_compilation/test18736.d(21): Error: constructor calls not allowed in loops or after labels
---
*/
// https://issues.dlang.org/show_bug.cgi?id=18736
class A
{
this(char c) { }
this(int i)
{
switch (i)
{
case 1: break;
case 2: .. case 4: break;
default: break;
}
this('c');
}
}