Skip to content

Commit 7a88077

Browse files
committed
---
yaml --- r: 130494 b: refs/heads/try c: ca60b74 h: refs/heads/master v: v3
1 parent 1e9fd07 commit 7a88077

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: c964cb229bd342bdeb0b4506c3a6d32b03e575f6
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 67b97ab6d2b7de9b69fd97dc171fcf8feec932ff
5-
refs/heads/try: f3f038c8566560e7367e0615d17ba104b71f6d8a
5+
refs/heads/try: ca60b743d7755f486158318212d33f0cc99a81ed
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/src/libstd/bitflags.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,10 +235,18 @@ mod tests {
235235
use ops::{BitOr, BitAnd, Sub, Not};
236236

237237
bitflags!(
238+
#[doc = "> The first principle is that you must not fool yourself — and"]
239+
#[doc = "> you are the easiest person to fool."]
240+
#[doc = "> "]
241+
#[doc = "> - Richard Feynman"]
238242
flags Flags: u32 {
239243
static FlagA = 0x00000001,
244+
#[doc = "<pcwalton> macros are way better at generating code than trans is"]
240245
static FlagB = 0x00000010,
241246
static FlagC = 0x00000100,
247+
#[doc = "* cmr bed"]
248+
#[doc = "* strcat table"]
249+
#[doc = "<strcat> wait what?"]
242250
static FlagABC = FlagA.bits
243251
| FlagB.bits
244252
| FlagC.bits,

0 commit comments

Comments
 (0)