about summary refs log tree commit diff
path: root/tests/run-make/deref-impl-rustdoc-ice/rmake.rs
blob: 0ad5934f62e182a60d1c15f375889355c9db0652 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// A very specific set of circumstances (mainly, implementing Deref, and
// having a procedural macro and a Debug derivation in external crates) caused
// an internal compiler error (ICE) when trying to use rustdoc. This test
// reproduces the exact circumstances which caused the bug and checks
// that it does not happen again.
// See https://github.com/rust-lang/rust/issues/38237

//@ ignore-cross-compile

use run_make_support::{cwd, rustc, rustdoc};

fn main() {
    rustc().input("foo.rs").run();
    rustc().input("bar.rs").run();
    rustdoc().input("baz.rs").library_search_path(cwd()).out_dir(cwd()).run();
}