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