Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(401)

Delta Between Two Patch Sets: test/fixedbugs/issue4251.go

Issue 10743046: code review 10743046: cmd/gc: support x[i:j:k] (Closed)
Left Patch Set: diff -r fccd815ed3bb https://code.google.com/p/go/ Created 10 years, 9 months ago
Right Patch Set: diff -r ef3ed5705640 https://code.google.com/p/go/ Created 10 years, 9 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/cmd/gc/yerr.h ('k') | test/slice3.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 // errorcheck 1 // errorcheck
2 2
3 // Copyright 2012 The Go Authors. All rights reserved. 3 // Copyright 2012 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style 4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file. 5 // license that can be found in the LICENSE file.
6 6
7 // Issue 4251: slice with inverted range is an error. 7 // Issue 4251: slice with inverted range is an error.
8 8
9 package p 9 package p
10 10
11 func F1(s []byte) []byte { 11 func F1(s []byte) []byte {
12 » return s[2:1]» » // ERROR "inverted" 12 » return s[2:1]» » // ERROR "invalid slice index"
13 } 13 }
14 14
15 func F2(a [10]byte) []byte { 15 func F2(a [10]byte) []byte {
16 » return a[2:1]» » // ERROR "inverted" 16 » return a[2:1]» » // ERROR "invalid slice index"
17 } 17 }
18 18
19 func F3(s string) string { 19 func F3(s string) string {
20 » return s[2:1]» » // ERROR "inverted" 20 » return s[2:1]» » // ERROR "invalid slice index"
21 } 21 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b