Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/cargo_update
/
.
/
src
/
tools
/
rustdoc
/
main.rs
blob: a35bcf9f547cba66e7eaa05892242e61cc30348d [
file
] [
log
] [
blame
] [
edit
]
// We need this feature as it changes `dylib` linking behavior and allows us to link to `rustc_driver`.
#![
feature
(
rustc_private
)]
use
std
::
process
::
ExitCode
;
fn
main
()
->
ExitCode
{
rustdoc
::
main
()
}