dmd/compiler/test/fail_compilation/test11176.d
Dennis 9b94878c85
Make safe error messages consistent (#20654)
Co-authored-by: Dennis Korpel <dennis@sarc.nl>
2025-01-08 13:46:38 +08:00

21 lines
462 B
D

/*
TEST_OUTPUT:
---
fail_compilation/test11176.d(12): Error: using `b.ptr` (instead of `&b[0])` is not allowed in a `@safe` function
fail_compilation/test11176.d(16): Error: using `b.ptr` (instead of `&b[0])` is not allowed in a `@safe` function
---
*/
// https://issues.dlang.org/show_bug.cgi?id=11176
@safe ubyte oops(ubyte[] b) {
return *b.ptr;
}
@safe ubyte oops(ubyte[0] b) {
return *b.ptr;
}
@safe ubyte cool(ubyte[1] b) {
return *b.ptr;
}