mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
12 lines
244 B
D
12 lines
244 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag9247.d(11): Error: functions cannot return opaque type `S` by value
|
|
fail_compilation/diag9247.d(12): Error: functions cannot return opaque type `S` by value
|
|
---
|
|
*/
|
|
|
|
struct S;
|
|
|
|
S foo();
|
|
S function() bar;
|