2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(dead_code)]
|
2014-01-27 16:09:57 -06:00
|
|
|
// This test verifies that temporary lifetime is correctly computed
|
|
|
|
// for static objects in enclosing scopes.
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2014-05-29 19:45:07 -05:00
|
|
|
use std::cmp::PartialEq;
|
2011-09-23 00:50:12 -05:00
|
|
|
|
2015-06-07 13:00:38 -05:00
|
|
|
fn f<T:PartialEq+std::fmt::Debug>(o: &mut Option<T>) {
|
|
|
|
assert_eq!(*o, None);
|
2011-09-23 00:50:12 -05:00
|
|
|
}
|
|
|
|
|
2014-01-27 16:09:57 -06:00
|
|
|
pub fn main() {
|
|
|
|
mod t {
|
|
|
|
enum E {V=1, A=0}
|
2014-11-06 02:05:53 -06:00
|
|
|
static C: E = E::V;
|
2014-01-27 16:09:57 -06:00
|
|
|
}
|
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
f::<isize>(&mut None);
|
2012-08-27 18:26:35 -05:00
|
|
|
}
|