1error: invalid `struct` delimiters or `fn` call arguments
2  --> $DIR/issue-34255-1.rs:8:5
3   |
4LL |     Test::Drill(field: 42);
5   |     ^^^^^^^^^^^^^^^^^^^^^^
6   |
7help: if `Test::Drill` is a struct, use braces as delimiters
8   |
9LL |     Test::Drill { field: 42 };
10   |                 ~           ~
11help: if `Test::Drill` is a function, use the arguments directly
12   |
13LL -     Test::Drill(field: 42);
14LL +     Test::Drill(42);
15   |
16
17error: aborting due to previous error
18
19