mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
12 lines
193 B
C
12 lines
193 B
C
/* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/generic2.c(103): Error: only one `default` allowed in generic-assoc-list
|
|
---
|
|
*/
|
|
|
|
#line 100
|
|
|
|
void test()
|
|
{
|
|
int e3 = _Generic(1, default:2, default:3);
|
|
}
|