2014-01-27 16:09:57 -06:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
2012-12-10 19:32:48 -06:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
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
|
|
|
}
|