1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
// Unit test for the "user substitutions" that are annotated on each
// node.
#![allow(warnings)]
use std::cell::Cell;
enum SomeEnum<T> {
SomeVariant(T),
SomeOtherVariant,
}
fn combine<T>(_: T, _: T) { }
fn no_annot() {
let c = 66;
combine(SomeEnum::SomeVariant(Cell::new(&c)), SomeEnum::SomeOtherVariant);
}
fn annot_underscore() {
let c = 66;
combine(SomeEnum::SomeVariant(Cell::new(&c)), SomeEnum::SomeOtherVariant::<Cell<_>>);
}
fn annot_reference_any_lifetime() {
let c = 66;
combine(SomeEnum::SomeVariant(Cell::new(&c)), SomeEnum::SomeOtherVariant::<Cell<&u32>>);
}
fn annot_reference_static_lifetime() {
let c = 66;
combine(
SomeEnum::SomeVariant(Cell::new(&c)), //~ ERROR
SomeEnum::SomeOtherVariant::<Cell<&'static u32>>,
);
}
fn annot_reference_named_lifetime<'a>(_d: &'a u32) {
let c = 66;
combine(
SomeEnum::SomeVariant(Cell::new(&c)), //~ ERROR
SomeEnum::SomeOtherVariant::<Cell<&'a u32>>,
);
}
fn annot_reference_named_lifetime_ok<'a>(c: &'a u32) {
combine(SomeEnum::SomeVariant(Cell::new(c)), SomeEnum::SomeOtherVariant::<Cell<&'a u32>>);
}
fn annot_reference_named_lifetime_in_closure<'a>(_: &'a u32) {
let _closure = || {
let c = 66;
combine(
SomeEnum::SomeVariant(Cell::new(&c)), //~ ERROR
SomeEnum::SomeOtherVariant::<Cell<&'a u32>>,
);
};
}
fn annot_reference_named_lifetime_in_closure_ok<'a>(c: &'a u32) {
let _closure = || {
combine(
SomeEnum::SomeVariant(Cell::new(c)),
SomeEnum::SomeOtherVariant::<Cell<&'a u32>>,
);
};
}
fn main() { }
|