]> git.lizzy.rs Git - rust.git/blob - src/test/ui/structs-enums/simple-generic-tag.rs
Rollup merge of #105955 - Nilstrieb:no-trivial-opt-wrappers-we-have-field-accesses...
[rust.git] / src / test / ui / structs-enums / simple-generic-tag.rs
1 // run-pass
2 #![allow(dead_code)]
3 #![allow(non_camel_case_types)]
4
5
6
7 // pretty-expanded FIXME #23616
8
9 enum clam<T> { a(T), }
10
11 pub fn main() { }