diff options
| author | Felix S. Klock II <pnkfelix@pnkfx.org> | 2013-09-04 18:07:56 +0200 |
|---|---|---|
| committer | Felix S. Klock II <pnkfelix@pnkfx.org> | 2013-09-04 18:08:02 +0200 |
| commit | c326ff0c2839862e8307fcbfec84afd288168051 (patch) | |
| tree | c647dde28fca7dea7d2237262cf2ae570a7ae518 /src/libstd | |
| parent | 6fbb64acbe0b833ac44e80b9bf2f0d6c779c5ec1 (diff) | |
| download | rust-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.rs | 3 |
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 { |
