mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 19:58:32 +00:00
11 lines
207 B
Rust
11 lines
207 B
Rust
![]() |
#![crate_type = "dylib"]
|
||
|
#![feature(rustc_private)]
|
||
|
|
||
|
extern crate rustc_middle;
|
||
|
extern crate rustc_driver;
|
||
|
|
||
|
use rustc_driver::plugin::Registry;
|
||
|
|
||
|
#[no_mangle]
|
||
|
fn __rustc_plugin_registrar(_: &mut Registry) {}
|