mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
10 lines
323 B
D
10 lines
323 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/traits_parameters.d(9): Error: `__traits(parameters)` cannot have arguments, but `234` was supplied
|
|
fail_compilation/traits_parameters.d(10): Error: `__traits(parameters)` may only be used inside a function
|
|
---
|
|
*/
|
|
|
|
typeof(__traits(parameters, 234)) xyz;
|
|
typeof(__traits(parameters)) x;
|