rust/src/tools/rustdoc/main.rs
2024-08-11 04:16:53 +02:00

6 lines
166 B
Rust

// We need this feature as it changes `dylib` linking behavior and allows us to link to `rustc_driver`.
#![feature(rustc_private)]
fn main() {
rustdoc::main()
}