mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
8 lines
366 B
D
8 lines
366 B
D
// https://issues.dlang.org/show_bug.cgi?id=16772
|
|
/* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail16772.d(8): Error: function `ice16772` cannot return type `ubyte[]` because its linkage is `extern(C++)`
|
|
fail_compilation/fail16772.d(8): slices are specific to D and do not have a counterpart representation in C++
|
|
---
|
|
*/
|
|
extern(C++) ubyte[] ice16772() { return []; }
|