Skip to content

Commit b796179

Browse files
Created tests/rustdoc/reexports subfolder to limit number of files at the top level
1 parent cb0d6e7 commit b796179

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#![feature(extern_types)]
2+
3+
pub mod foo_mod {}
4+
extern "C" {
5+
pub fn foo_ffn();
6+
pub static FOO_FSTATIC: FooStruct;
7+
pub type FooFType;
8+
}
9+
pub fn foo_fn() {}
10+
pub trait FooTrait {}
11+
pub struct FooStruct;
12+
pub enum FooEnum {}
13+
pub union FooUnion {
14+
x: (),
15+
}
16+
pub type FooType = FooStruct;
17+
pub static FOO_STATIC: FooStruct = FooStruct;
18+
pub const FOO_CONSTANT: FooStruct = FooStruct;
19+
#[macro_export]
20+
macro_rules! foo_macro {
21+
() => ();
22+
}
File renamed without changes.

0 commit comments

Comments
 (0)