about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorFelix S. Klock II <pnkfelix@pnkfx.org>2013-09-04 18:07:56 +0200
committerFelix S. Klock II <pnkfelix@pnkfx.org>2013-09-04 18:08:02 +0200
commitc326ff0c2839862e8307fcbfec84afd288168051 (patch)
treec647dde28fca7dea7d2237262cf2ae570a7ae518 /src/libstd
parent6fbb64acbe0b833ac44e80b9bf2f0d6c779c5ec1 (diff)
downloadrust-c326ff0c2839862e8307fcbfec84afd288168051.tar.gz
rust-c326ff0c2839862e8307fcbfec84afd288168051.zip
Another followup on #6009.
Odd that my earlier make checks did not catch this.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/condition.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/condition.rs b/src/libstd/condition.rs
index 4d8857c9d1b..9cd2ad79d18 100644
--- a/src/libstd/condition.rs
+++ b/src/libstd/condition.rs
@@ -193,7 +193,8 @@ mod test {
     // Issue #6009
     mod m {
         condition! {
-            sadness: int -> int;
+            // #6009, #8215: should this truly need a `pub` for access from n?
+            pub sadness: int -> int;
         }
 
         mod n {