dmd/compiler/test/fail_compilation/deprecations_preview_in.d
Mathias LANG eca46c71ad
dmd: Deprecate 'in' parameters on non-extern(D,C++) functions (#14951)
This error was introduced in `-preview=in` in v2.101.0.
In order to make `-preview=in` the default, we add a deprecation
even if `-preview=in` is not used.
2023-03-08 10:57:41 +02:00

11 lines
315 B
D

/*
REQUIRED_ARGS: -de
TEST_OUTPUT:
---
fail_compilation/deprecations_preview_in.d(1): Deprecation: using `in` parameters with `extern(C)` functions is deprecated
fail_compilation/deprecations_preview_in.d(1): parameter `__anonymous_param` declared as `in` here
---
*/
#line 1
extern(C) void fun1(in char*);