blob: 66fc245bdf59369c6ad4b1dff609f5b64004f36a (
plain)
1
2
3
4
5
6
7
8
9
10
|
// force-host
#![feature(plugin_registrar)]
#![feature(rustc_private)]
extern crate rustc_driver;
use rustc_driver::plugin::Registry;
#[plugin_registrar]
pub fn plugin_registrar(_: &mut Registry) {}
|