Skip to content

Commit b9fc773

Browse files
committed
Update run-pass/cfg-on-items.rs
Make comment describe actual behaviour.
1 parent 1e16edd commit b9fc773

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/test/run-pass/cfgs-on-items.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#[cfg(fooA, not(bar))] // fooA AND !bar
1414
fn foo1() -> int { 1 }
1515

16-
#[cfg(not(fooA, bar))] // !(fooA AND bar)
16+
#[cfg(not(fooA, bar))] // !fooA AND !bar
1717
fn foo2() -> int { 2 }
1818

1919
#[cfg(fooC)]

0 commit comments

Comments
 (0)