| 
									
										
										
										
											2012-02-18 22:15:42 +01:00
										 |  |  | // run | 
					
						
							| 
									
										
										
										
											2011-12-06 10:48:17 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-10 14:32:26 -07:00
										 |  |  | // Copyright 2011 The Go Authors. All rights reserved. | 
					
						
							| 
									
										
										
										
											2011-12-06 10:48:17 -05:00
										 |  |  | // Use of this source code is governed by a BSD-style | 
					
						
							|  |  |  | // license that can be found in the LICENSE file. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-19 17:33:41 +11:00
										 |  |  | // Test run-time error detection for interface values containing types | 
					
						
							|  |  |  | // that cannot be compared for equality. | 
					
						
							| 
									
										
										
										
											2011-12-06 10:48:17 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | package main | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func main() { | 
					
						
							|  |  |  | 	cmp(1) | 
					
						
							| 
									
										
										
										
											2011-12-12 22:22:09 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-06 10:48:17 -05:00
										 |  |  | 	var ( | 
					
						
							|  |  |  | 		m map[int]int | 
					
						
							| 
									
										
										
										
											2011-12-12 22:22:09 -05:00
										 |  |  | 		s struct{ x []int } | 
					
						
							| 
									
										
										
										
											2011-12-06 10:48:17 -05:00
										 |  |  | 		f func() | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 	noCmp(m) | 
					
						
							|  |  |  | 	noCmp(s) | 
					
						
							|  |  |  | 	noCmp(f) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func cmp(x interface{}) bool { | 
					
						
							|  |  |  | 	return x == x | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func noCmp(x interface{}) { | 
					
						
							|  |  |  | 	shouldPanic(func() { cmp(x) }) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func shouldPanic(f func()) { | 
					
						
							|  |  |  | 	defer func() { | 
					
						
							|  |  |  | 		if recover() == nil { | 
					
						
							|  |  |  | 			panic("function should panic") | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | 	f() | 
					
						
							|  |  |  | } |