diff options
| author | Michał Krasnoborski <mkrdln@gmail.com> | 2015-02-24 08:24:42 +0100 |
|---|---|---|
| committer | Michał Krasnoborski <mkrdln@gmail.com> | 2015-02-24 08:24:42 +0100 |
| commit | a9f6f4b73e838e83538d4544141d8354b4633aed (patch) | |
| tree | 3420d5b323c32a9984c8608e2e459c0c8699c8af /src/libcoretest/num | |
| parent | 948a17ed1d61de822a7d06527ca88b1ff709f945 (diff) | |
| download | rust-a9f6f4b73e838e83538d4544141d8354b4633aed.tar.gz rust-a9f6f4b73e838e83538d4544141d8354b4633aed.zip | |
Add missing `fn`
Diffstat (limited to 'src/libcoretest/num')
| -rw-r--r-- | src/libcoretest/num/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcoretest/num/mod.rs b/src/libcoretest/num/mod.rs index 1199fd01068..03f6e51a349 100644 --- a/src/libcoretest/num/mod.rs +++ b/src/libcoretest/num/mod.rs @@ -124,7 +124,7 @@ mod test { } #[test] - test_int_from_minus_sign() { + fn test_int_from_minus_sign() { assert_eq!("-".parse::<i32>().ok(), None); } } |
