rust/tests/ui/issues/issue-22706.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
406 B
Plaintext
Raw Normal View History

2022-06-01 18:55:30 -05:00
error[E0109]: type arguments are not allowed on module `marker`
2018-12-25 09:56:47 -06:00
--> $DIR/issue-22706.rs:1:29
2018-07-15 16:11:54 -05:00
|
LL | fn is_copy<T: ::std::marker<i32>::Copy>() {}
2022-06-01 18:55:30 -05:00
| ------ ^^^ type argument not allowed
| |
| not allowed on module `marker`
2018-07-15 16:11:54 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0109`.