mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
15 lines
394 B
C
15 lines
394 B
C
// check importAll analysis of C files
|
|
/* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/failcstuff3.c(54): Error: union `failcstuff3.S22061` conflicts with struct `failcstuff3.S22061` at fail_compilation/failcstuff3.c(50)
|
|
---
|
|
*/
|
|
|
|
/***************************************************/
|
|
// https://issues.dlang.org/show_bug.cgi?id=22061
|
|
#line 50
|
|
struct S22061
|
|
{
|
|
int field;
|
|
};
|
|
typedef union S22061 S22061;
|