aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-3304.rs
blob: cc376faeb9dc52b7db4127f1dc6614f6a4dfa6f3 (plain)
1
2
3
4
5
6
7
8
9
#[lang = "sized"]
trait Sized {}

pub enum ROption<T> {
    RSome(T),
    RNone,
}

fn main() {}