blob: 68daf2893efadcf3c501af5acb42fd70d99d471c [file] [log] [blame] [edit]
//@ run-pass
#![allow(dead_code)]
// This test verifies that temporary lifetime is correctly computed
// for static objects in enclosing scopes.
fn f<T:PartialEq+std::fmt::Debug>(o: &mut Option<T>) {
assert_eq!(*o, None);
}
pub fn main() {
mod t {
enum E {V=1, A=0}
static C: E = E::V;
}
f::<isize>(&mut None);
}