mirror of https://github.com/rust-lang/rfcs.git
rfc, cfg-path-version: fix bugs.
This commit is contained in:
parent
1cf87f690e
commit
210e909bd8
|
@ -280,9 +280,9 @@ We can then refer to them like so:
|
|||
|
||||
```rust
|
||||
#[cfg(all(
|
||||
accessible(foobar::Person::ssn),
|
||||
accessible(foobar::Shape::Triangle::sides),
|
||||
accessible(foobar::Shape::MaybeUninit::value)
|
||||
accessible(::foobar::Person::ssn),
|
||||
accessible(::foobar::Shape::Triangle::sides),
|
||||
accessible(::foobar::Shape::MaybeUninit::value)
|
||||
))]
|
||||
fn do_stuff() {
|
||||
...
|
||||
|
|
Loading…
Reference in New Issue