mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
20 lines
445 B
D
20 lines
445 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice9494.d(10): Error: circular reference to variable `ice9494.test`
|
|
fail_compilation/ice9494.d(14): Error: circular reference to variable `ice9494.Foo.test`
|
|
fail_compilation/ice9494.d(19): Error: circular reference to variable `ice9494.Bar.test`
|
|
---
|
|
*/
|
|
|
|
int[test] test; // stack overflow
|
|
|
|
class Foo
|
|
{
|
|
int[this.test] test; // stack overflow
|
|
}
|
|
|
|
struct Bar
|
|
{
|
|
int[this.test] test; // stack overflow
|
|
}
|