mirror of
https://github.com/dlang/dmd.git
synced 2025-04-28 06:00:13 +03:00
10 lines
261 B
D
10 lines
261 B
D
/* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/varargsstc.d(102): Error: variadic parameter cannot have attributes `out ref`
|
|
---
|
|
*/
|
|
|
|
#line 100
|
|
|
|
int printf(const(char)*, const scope shared return ...);
|
|
int printf(const(char)*, ref out scope immutable shared return ...);
|