mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
221 B
D
15 lines
221 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail18.d(14): Error: upper and lower bounds are needed to slice a pointer
|
|
---
|
|
*/
|
|
|
|
// 7/25
|
|
// Internal error: ..\ztc\cgcod.c 1464
|
|
|
|
void main ()
|
|
{
|
|
int x = 3;
|
|
int[] a = (&x)[];
|
|
}
|