| 
									
										
										
										
											2012-02-16 23:48:57 -05:00
										 |  |  | // errorcheck | 
					
						
							| 
									
										
										
										
											2010-02-01 00:25:59 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-10 14:32:26 -07:00
										 |  |  | // Copyright 2010 The Go Authors. All rights reserved. | 
					
						
							| 
									
										
										
										
											2010-02-01 00:25:59 -08:00
										 |  |  | // Use of this source code is governed by a BSD-style | 
					
						
							|  |  |  | // license that can be found in the LICENSE file. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-19 14:28:53 +11:00
										 |  |  | // Verify that illegal uses of ... are detected. | 
					
						
							|  |  |  | // Does not compile. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-01 00:25:59 -08:00
										 |  |  | package main | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-24 11:55:30 -04:00
										 |  |  | import "unsafe" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-01 00:25:59 -08:00
										 |  |  | func sum(args ...int) int { return 0 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ( | 
					
						
							|  |  |  | 	_ = sum(1, 2, 3) | 
					
						
							|  |  |  | 	_ = sum() | 
					
						
							|  |  |  | 	_ = sum(1.0, 2.0) | 
					
						
							|  |  |  | 	_ = sum(1.5)      // ERROR "integer" | 
					
						
							| 
									
										
										
										
											2011-12-14 17:34:35 +01:00
										 |  |  | 	_ = sum("hello")  // ERROR ".hello. .type string. as type int|incompatible" | 
					
						
							| 
									
										
										
										
											2011-10-08 19:37:06 +02:00
										 |  |  | 	_ = sum([]int{1}) // ERROR "\[\]int literal.*as type int|incompatible" | 
					
						
							| 
									
										
										
										
											2010-02-01 00:25:59 -08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-13 08:05:41 +02:00
										 |  |  | func sum3(int, int, int) int { return 0 } | 
					
						
							|  |  |  | func tuple() (int, int, int) { return 1, 2, 3 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ( | 
					
						
							|  |  |  | 	_ = sum(tuple()) | 
					
						
							| 
									
										
										
										
											2016-10-28 14:22:13 -07:00
										 |  |  | 	_ = sum(tuple()...) // ERROR "multiple-value" | 
					
						
							| 
									
										
										
										
											2012-07-13 08:05:41 +02:00
										 |  |  | 	_ = sum3(tuple()) | 
					
						
							| 
									
										
										
										
											2016-10-28 14:22:13 -07:00
										 |  |  | 	_ = sum3(tuple()...) // ERROR "multiple-value" "not enough" | 
					
						
							| 
									
										
										
										
											2012-07-13 08:05:41 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-01 00:25:59 -08:00
										 |  |  | type T []T | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func funny(args ...T) int { return 0 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ( | 
					
						
							|  |  |  | 	_ = funny(nil) | 
					
						
							|  |  |  | 	_ = funny(nil, nil) | 
					
						
							|  |  |  | 	_ = funny([]T{}) // ok because []T{} is a T; passes []T{[]T{}} | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2010-09-24 11:55:30 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-22 15:28:58 +02:00
										 |  |  | func Foo(n int) {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-24 11:55:30 -04:00
										 |  |  | func bad(args ...int) { | 
					
						
							|  |  |  | 	print(1, 2, args...)	// ERROR "[.][.][.]" | 
					
						
							|  |  |  | 	println(args...)	// ERROR "[.][.][.]" | 
					
						
							|  |  |  | 	ch := make(chan int) | 
					
						
							|  |  |  | 	close(ch...)	// ERROR "[.][.][.]" | 
					
						
							|  |  |  | 	_ = len(args...)	// ERROR "[.][.][.]" | 
					
						
							|  |  |  | 	_ = new(int...)	// ERROR "[.][.][.]" | 
					
						
							|  |  |  | 	n := 10 | 
					
						
							|  |  |  | 	_ = make([]byte, n...)	// ERROR "[.][.][.]" | 
					
						
							| 
									
										
										
										
											2017-08-11 14:00:08 +02:00
										 |  |  | 	_ = make([]byte, 10 ...)	// ERROR "[.][.][.]" | 
					
						
							| 
									
										
										
										
											2010-09-24 11:55:30 -04:00
										 |  |  | 	var x int | 
					
						
							|  |  |  | 	_ = unsafe.Pointer(&x...)	// ERROR "[.][.][.]" | 
					
						
							|  |  |  | 	_ = unsafe.Sizeof(x...)	// ERROR "[.][.][.]" | 
					
						
							| 
									
										
										
										
											2011-05-31 15:41:47 -04:00
										 |  |  | 	_ = [...]byte("foo") // ERROR "[.][.][.]" | 
					
						
							| 
									
										
										
										
											2011-07-26 00:52:02 -04:00
										 |  |  | 	_ = [...][...]int{{1,2,3},{4,5,6}}	// ERROR "[.][.][.]" | 
					
						
							| 
									
										
										
										
											2017-04-22 15:28:58 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Foo(x...) // ERROR "invalid use of [.][.][.] in call" | 
					
						
							| 
									
										
										
										
											2010-09-24 11:55:30 -04:00
										 |  |  | } |