]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/issue-97343.rs
Auto merge of #106143 - matthiaskrgr:rollup-3kpy1dc, r=matthiaskrgr
[rust.git] / src / test / ui / derives / issue-97343.rs
1 use std::fmt::Debug;
2
3 #[derive(Debug)]
4 pub struct Irrelevant<Irrelevant> { //~ ERROR type arguments are not allowed on type parameter
5     irrelevant: Irrelevant,
6 }
7
8 fn main() {}