2022-05-27 10:47:05 -07:00
|
|
|
use std::fmt::Debug;
|
|
|
|
|
|
2022-05-27 10:48:12 -07:00
|
|
|
#[derive(Debug)]
|
2022-06-01 16:55:30 -07:00
|
|
|
pub struct Irrelevant<Irrelevant> { //~ ERROR type arguments are not allowed on type parameter
|
2022-05-27 10:47:05 -07:00
|
|
|
irrelevant: Irrelevant,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|