mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
258 B
C
14 lines
258 B
C
/* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/test23003.c(101): Error: undefined identifier `size_t`
|
|
fail_compilation/test23003.c(102): Error: undefined identifier `object`
|
|
---
|
|
*/
|
|
|
|
/* https://issues.dlang.org/show_bug.cgi?id=23003
|
|
*/
|
|
|
|
#line 100
|
|
|
|
size_t x;
|
|
object y;
|