summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/fail_compilation/test11176.d
blob: cf60b80fd7a2affff18a9fed660f2dc1d41619e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
TEST_OUTPUT:
---
fail_compilation/test11176.d(12): Error: `b.ptr` cannot be used in `@safe` code, use `&b[0]` instead
fail_compilation/test11176.d(16): Error: `b.ptr` cannot be used in `@safe` code, use `&b[0]` instead
---
*/

// https://issues.dlang.org/show_bug.cgi?id=11176

@safe ubyte oops(ubyte[] b) {
    return *b.ptr;
}

@safe ubyte oops(ubyte[3] b) {
    return *b.ptr;
}