mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
12 lines
220 B
D
12 lines
220 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/safe_pointer_index.d(11): Error: indexing pointer `x` is not allowed in a `@safe` function
|
|
---
|
|
*/
|
|
|
|
@safe void f(int* x)
|
|
{
|
|
int y = x[0]; // allowed, same as *x
|
|
int z = x[1];
|
|
}
|