summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-ui/doc-cfg.stderr
blob: b379f6febe29f1c8511aa49bcd902d650e7e37b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
error: `cfg` predicate is not specified
  --> $DIR/doc-cfg.rs:3:7
   |
LL | #[doc(cfg(), cfg(foo, bar))]
   |       ^^^^^

error: multiple `cfg` predicates are specified
  --> $DIR/doc-cfg.rs:3:23
   |
LL | #[doc(cfg(), cfg(foo, bar))]
   |                       ^^^

error: `cfg` predicate is not specified
  --> $DIR/doc-cfg.rs:7:7
   |
LL | #[doc(cfg())]
   |       ^^^^^

error: multiple `cfg` predicates are specified
  --> $DIR/doc-cfg.rs:8:16
   |
LL | #[doc(cfg(foo, bar))]
   |                ^^^

error: aborting due to 4 previous errors