2016-04-26 12:51:14 -05:00
|
|
|
// no-prefer-dynamic
|
|
|
|
|
|
|
|
#![crate_type = "rlib"]
|
|
|
|
#![feature(plugin_registrar, rustc_private)]
|
|
|
|
|
|
|
|
extern crate rustc;
|
|
|
|
extern crate rustc_plugin;
|
|
|
|
|
|
|
|
use rustc_plugin::Registry;
|
|
|
|
|
|
|
|
#[plugin_registrar]
|
|
|
|
pub fn plugin_registrar(_: &mut Registry) {}
|