8ea3b2d25f
Fixes #123: - Adds visibility check for module-level constants. - Adds visibility check for associated constants. - Fixes bitflags expansion to produce public associated constants (as the real expansion does).
21 lines
460 B
Rust
21 lines
460 B
Rust
pub const FOO: i32 = 10;
|
|
pub const BAR: &'static str = "hello world";
|
|
pub const DELIMITER: char = ':';
|
|
pub const LEFTCURLY: char = '{';
|
|
pub const QUOTE: char = '\'';
|
|
pub const TAB: char = '\t';
|
|
pub const NEWLINE: char = '\n';
|
|
pub const HEART: char = '❤';
|
|
pub const ZOM: f32 = 3.14;
|
|
|
|
pub(crate) const DONT_EXPORT_CRATE: i32 = 20;
|
|
const DONT_EXPORT_PRIV: i32 = 30;
|
|
|
|
#[repr(C)]
|
|
struct Foo {
|
|
x: [i32; FOO],
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub extern "C" fn root(x: Foo) { }
|