mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
15 lines
215 B
D
15 lines
215 B
D
/*
|
|
TEST_OUTPUT:
|
|
----
|
|
fail_compilation/ice14177.d(8): Error: alias `ice14177.Primitive` recursive alias declaration
|
|
----
|
|
*/
|
|
|
|
alias Primitive = Atom*;
|
|
alias Atom = Primitive;
|
|
|
|
void main()
|
|
{
|
|
Atom atom;
|
|
atom;
|
|
}
|