| 
									
										
										
										
											2012-02-18 22:15:42 +01:00
										 |  |  | // run | 
					
						
							| 
									
										
										
										
											2009-01-09 15:38:01 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Copyright 2009 The Go Authors. All rights reserved. | 
					
						
							|  |  |  | // Use of this source code is governed by a BSD-style | 
					
						
							|  |  |  | // license that can be found in the LICENSE file. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-23 18:47:26 +11:00
										 |  |  | // Test various safe uses of indirection. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-09 15:38:01 -08:00
										 |  |  | package main | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var m0 map[string]int | 
					
						
							|  |  |  | var m1 *map[string]int | 
					
						
							|  |  |  | var m2 *map[string]int = &m0 | 
					
						
							| 
									
										
										
										
											2009-03-03 08:39:12 -08:00
										 |  |  | var m3 map[string]int = map[string]int{"a": 1} | 
					
						
							| 
									
										
										
										
											2009-01-09 15:38:01 -08:00
										 |  |  | var m4 *map[string]int = &m3 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var s0 string | 
					
						
							|  |  |  | var s1 *string | 
					
						
							|  |  |  | var s2 *string = &s0 | 
					
						
							|  |  |  | var s3 string = "a" | 
					
						
							|  |  |  | var s4 *string = &s3 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var a0 [10]int | 
					
						
							|  |  |  | var a1 *[10]int | 
					
						
							|  |  |  | var a2 *[10]int = &a0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var b0 []int | 
					
						
							|  |  |  | var b1 *[]int | 
					
						
							|  |  |  | var b2 *[]int = &b0 | 
					
						
							| 
									
										
										
										
											2009-03-03 08:39:12 -08:00
										 |  |  | var b3 []int = []int{1, 2, 3} | 
					
						
							| 
									
										
										
										
											2009-01-09 15:38:01 -08:00
										 |  |  | var b4 *[]int = &b3 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-09 19:27:08 -08:00
										 |  |  | func crash() { | 
					
						
							| 
									
										
										
										
											2009-01-09 15:38:01 -08:00
										 |  |  | 	// these uses of nil pointers | 
					
						
							|  |  |  | 	// would crash but should type check | 
					
						
							|  |  |  | 	println("crash", | 
					
						
							| 
									
										
										
										
											2010-03-24 16:46:53 -07:00
										 |  |  | 		len(a1)+cap(a1)) | 
					
						
							| 
									
										
										
										
											2009-01-09 15:38:01 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-09 19:27:08 -08:00
										 |  |  | func nocrash() { | 
					
						
							| 
									
										
										
										
											2009-01-09 15:38:01 -08:00
										 |  |  | 	// this is spaced funny so that | 
					
						
							|  |  |  | 	// the compiler will print a different | 
					
						
							|  |  |  | 	// line number for each len call if | 
					
						
							|  |  |  | 	// it decides there are type errors. | 
					
						
							|  |  |  | 	// it might also help in the traceback. | 
					
						
							|  |  |  | 	x := | 
					
						
							| 
									
										
										
										
											2010-03-24 16:46:53 -07:00
										 |  |  | 		len(m0) + | 
					
						
							|  |  |  | 			len(m3) | 
					
						
							| 
									
										
										
										
											2009-06-25 14:44:09 -07:00
										 |  |  | 	if x != 1 { | 
					
						
							| 
									
										
										
										
											2010-03-24 16:46:53 -07:00
										 |  |  | 		println("wrong maplen") | 
					
						
							|  |  |  | 		panic("fail") | 
					
						
							| 
									
										
										
										
											2009-01-09 15:38:01 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	x = | 
					
						
							| 
									
										
										
										
											2010-03-24 16:46:53 -07:00
										 |  |  | 		len(s0) + | 
					
						
							|  |  |  | 			len(s3) | 
					
						
							| 
									
										
										
										
											2009-06-25 14:44:09 -07:00
										 |  |  | 	if x != 1 { | 
					
						
							| 
									
										
										
										
											2010-03-24 16:46:53 -07:00
										 |  |  | 		println("wrong stringlen") | 
					
						
							|  |  |  | 		panic("fail") | 
					
						
							| 
									
										
										
										
											2009-01-09 15:38:01 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	x = | 
					
						
							| 
									
										
										
										
											2010-03-24 16:46:53 -07:00
										 |  |  | 		len(a0) + | 
					
						
							|  |  |  | 			len(a2) | 
					
						
							| 
									
										
										
										
											2009-01-09 15:38:01 -08:00
										 |  |  | 	if x != 20 { | 
					
						
							| 
									
										
										
										
											2010-03-24 16:46:53 -07:00
										 |  |  | 		println("wrong arraylen") | 
					
						
							|  |  |  | 		panic("fail") | 
					
						
							| 
									
										
										
										
											2009-01-09 15:38:01 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	x = | 
					
						
							| 
									
										
										
										
											2010-03-24 16:46:53 -07:00
										 |  |  | 		len(b0) + | 
					
						
							|  |  |  | 			len(b3) | 
					
						
							| 
									
										
										
										
											2009-06-25 14:44:09 -07:00
										 |  |  | 	if x != 3 { | 
					
						
							| 
									
										
										
										
											2010-03-24 16:46:53 -07:00
										 |  |  | 		println("wrong slicelen") | 
					
						
							|  |  |  | 		panic("fail") | 
					
						
							| 
									
										
										
										
											2009-01-09 15:38:01 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	x = | 
					
						
							| 
									
										
										
										
											2010-03-24 16:46:53 -07:00
										 |  |  | 		cap(b0) + | 
					
						
							|  |  |  | 			cap(b3) | 
					
						
							| 
									
										
										
										
											2009-06-25 14:44:09 -07:00
										 |  |  | 	if x != 3 { | 
					
						
							| 
									
										
										
										
											2010-03-24 16:46:53 -07:00
										 |  |  | 		println("wrong slicecap") | 
					
						
							|  |  |  | 		panic("fail") | 
					
						
							| 
									
										
										
										
											2009-01-09 15:38:01 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-24 16:46:53 -07:00
										 |  |  | func main() { nocrash() } |