]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/issue-97343.rs
Auto merge of #103894 - mati865:gnullvm-libunwind-changes, r=thomcc
[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() {}