rfc, cfg-path-version: fix bugs.

This commit is contained in:
Mazdak Farrokhzad 2018-08-31 23:26:42 +02:00
parent 1cf87f690e
commit 210e909bd8
1 changed files with 3 additions and 3 deletions

View File

@ -280,9 +280,9 @@ We can then refer to them like so:
```rust ```rust
#[cfg(all( #[cfg(all(
accessible(foobar::Person::ssn), accessible(::foobar::Person::ssn),
accessible(foobar::Shape::Triangle::sides), accessible(::foobar::Shape::Triangle::sides),
accessible(foobar::Shape::MaybeUninit::value) accessible(::foobar::Shape::MaybeUninit::value)
))] ))]
fn do_stuff() { fn do_stuff() {
... ...