diff options
| author | Alex Burka <aburka@seas.upenn.edu> | 2016-03-18 19:04:43 -0400 |
|---|---|---|
| committer | Alex Burka <aburka@seas.upenn.edu> | 2016-03-24 01:42:23 -0400 |
| commit | 861644f2af5421f5aa55d4e7fddfc8dba54bcb70 (patch) | |
| tree | 06c9817cddb97291eeb781d1f82f8062ee621a03 /src/test/compile-fail/impossible_range.rs | |
| parent | 9f899a66591c1a4bc68b51fc6d1f207d2d49a087 (diff) | |
| download | rust-861644f2af5421f5aa55d4e7fddfc8dba54bcb70.tar.gz rust-861644f2af5421f5aa55d4e7fddfc8dba54bcb70.zip | |
address nits
Diffstat (limited to 'src/test/compile-fail/impossible_range.rs')
| -rw-r--r-- | src/test/compile-fail/impossible_range.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/compile-fail/impossible_range.rs b/src/test/compile-fail/impossible_range.rs index 169ba442240..94e048fed65 100644 --- a/src/test/compile-fail/impossible_range.rs +++ b/src/test/compile-fail/impossible_range.rs @@ -19,9 +19,9 @@ pub fn main() { 0..1; ...; //~ERROR inclusive range with no end - //~^HELP 28237 + //~^HELP bounded at the end 0...; //~ERROR inclusive range with no end - //~^HELP 28237 + //~^HELP bounded at the end ...1; 0...1; } |
