summaryrefslogtreecommitdiffstats
path: root/src/test/ui-fulldeps/auxiliary/outlive-expansion-phase.rs
blob: e83dfe80463d882b715b525ea7f8f0ec97b15802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// force-host

#![feature(rustc_private)]

extern crate rustc_middle;
extern crate rustc_driver;

use std::any::Any;
use std::cell::RefCell;
use rustc_driver::plugin::Registry;

struct Foo {
    foo: isize
}

impl Drop for Foo {
    fn drop(&mut self) {}
}

#[no_mangle]
fn __rustc_plugin_registrar(_: &mut Registry) {
    thread_local!(static FOO: RefCell<Option<Box<Any+Send>>> = RefCell::new(None));
    FOO.with(|s| *s.borrow_mut() = Some(Box::new(Foo { foo: 10 }) as Box<Any+Send>));
}