about summary refs log tree commit diff
path: root/tests/ui/deriving/issue-15689-2.rs
blob: a1f66cc064388d36d3a7597b2771ed4d2a6fcce4 (plain)
1
2
3
4
5
6
7
8
9
//@ check-pass
#![allow(dead_code)]

#[derive(Clone)]
enum Test<'a> {
    Slice(&'a isize)
}

fn main() {}