Move almost all run-make-fulldeps to run-make
They pass fine.
This commit is contained in:
parent
f2d9a3d077
commit
433da1fc04
696 changed files with 2 additions and 2 deletions
16
tests/run-make/rustdoc-map-file/foo.rs
Normal file
16
tests/run-make/rustdoc-map-file/foo.rs
Normal file
|
@ -0,0 +1,16 @@
|
|||
pub use private::Quz;
|
||||
pub use hidden::Bar;
|
||||
|
||||
mod private {
|
||||
pub struct Quz;
|
||||
}
|
||||
|
||||
#[doc(hidden)]
|
||||
pub mod hidden {
|
||||
pub struct Bar;
|
||||
}
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! foo {
|
||||
() => {}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue