Files
ldc/tests/mini/norun_debug10.d
Frits van Bommel b06fa1f05e I ran into another issue like the one fixed by r1318, so update all of
`tests/mini/norun_debug*` to hopefully keep crashing using the same trick.
2009-05-28 02:28:30 +02:00

22 lines
301 B
D

module mini.norun_debug10;
struct Vec2
{
float x,y;
}
void main()
{
Vec2 v2;
char[] str = "hello";
int i = void;
float f = 3.14;
func(v2, v2, str, i, f);
}
void func(Vec2 v2, ref Vec2 rv2, char[] str, out int i, ref float f)
{
int* fail = cast(int*) 1;
*fail = 0;
}