diff options
| author | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2013-08-09 20:30:03 -0700 |
|---|---|---|
| committer | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2013-08-10 07:33:22 -0700 |
| commit | f9dee04aaabc0ee38f91744e07fe67f36ec6c8e9 (patch) | |
| tree | 8f4c820450000fe20dc036db485afed156e9e0a9 /src/compiletest | |
| parent | 74d2552b0ab671a7455b5a60972c0cc6e3ecdb82 (diff) | |
| download | rust-f9dee04aaabc0ee38f91744e07fe67f36ec6c8e9.tar.gz rust-f9dee04aaabc0ee38f91744e07fe67f36ec6c8e9.zip | |
std: Iterator.len_ -> .len
Diffstat (limited to 'src/compiletest')
| -rw-r--r-- | src/compiletest/runtest.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiletest/runtest.rs b/src/compiletest/runtest.rs index d325341d157..0fb64152d37 100644 --- a/src/compiletest/runtest.rs +++ b/src/compiletest/runtest.rs @@ -938,7 +938,7 @@ fn disassemble_extract(config: &config, _props: &TestProps, fn count_extracted_lines(p: &Path) -> uint { let x = io::read_whole_file_str(&p.with_filetype("ll")).unwrap(); - x.line_iter().len_() + x.line_iter().len() } |
