mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00

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.
11 lines
315 B
D
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*);
|