diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2013-04-16 01:08:52 +1000 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2013-04-16 09:57:47 +1000 |
| commit | d3be98e9f5e721b53dccd0a43c2ff58ddd32ac47 (patch) | |
| tree | 2c1730e5ca7b3352854e92b51a7d0b44e5984438 /src/libsyntax/parse | |
| parent | f10cf26e25c75e148d86dd151a210d9f4a7ece2f (diff) | |
| download | rust-d3be98e9f5e721b53dccd0a43c2ff58ddd32ac47.tar.gz rust-d3be98e9f5e721b53dccd0a43c2ff58ddd32ac47.zip | |
libcore,std,syntax,rustc: move tests into `mod tests`, make them private (no pub mod or pub fn).
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/lexer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/lexer.rs b/src/libsyntax/parse/lexer.rs index 59e4dddc73b..bc930515a5d 100644 --- a/src/libsyntax/parse/lexer.rs +++ b/src/libsyntax/parse/lexer.rs @@ -781,7 +781,7 @@ fn consume_whitespace(rdr: @mut StringReader) { } #[cfg(test)] -pub mod test { +mod test { use super::*; use ast; |
