mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
11 lines
174 B
D
11 lines
174 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag10359.d(10): Error: pointer slicing is not allowed in a `@safe` function
|
|
---
|
|
*/
|
|
|
|
void foo(int* p) @safe
|
|
{
|
|
auto a = p[0 .. 10];
|
|
}
|