mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
11 lines
249 B
Rust
11 lines
249 B
Rust
// Regression test for issue #26083 and #35435
|
|
// Test that span for public struct fields start at `pub`
|
|
|
|
struct Foo {
|
|
bar: u8,
|
|
pub bar: u8, //~ ERROR is already declared
|
|
pub(crate) bar: u8, //~ ERROR is already declared
|
|
}
|
|
|
|
fn main() {}
|