mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
10 lines
143 B
D
10 lines
143 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag11423.d(9): Error: undefined identifier `Foo`
|
|
---
|
|
*/
|
|
void main()
|
|
{
|
|
auto foo = new shared Foo();
|
|
}
|