mirror of
				https://github.com/golang/go.git
				synced 2025-11-04 02:30:57 +00:00 
			
		
		
		
	Fixes #22198 Change-Id: I5cb91c73069af8b16a2580d28756efd58c84b690 Reviewed-on: https://go-review.googlesource.com/69990 Run-TryBot: Keith Randall <khr@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com>
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			288 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			288 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// compile
 | 
						|
 | 
						|
// Copyright 2017 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.
 | 
						|
 | 
						|
package issue22198
 | 
						|
 | 
						|
func f(a *bool, b bool) {
 | 
						|
	if b {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	c := '\n'
 | 
						|
	if b {
 | 
						|
		c = ' '
 | 
						|
	}
 | 
						|
	*a = c == '\n'
 | 
						|
}
 |