Source file test/fixedbugs/issue4252.dir/main.go

     1  // Copyright 2012 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package main
     6  
     7  import "./a"
     8  
     9  func main() {
    10  	if a.InlinedFakeTrue() {
    11  		panic("returned true was the real one")
    12  	}
    13  	if !a.InlinedFakeFalse() {
    14  		panic("returned false was the real one")
    15  	}
    16  	if a.InlinedFakeNil() == nil {
    17  		panic("returned nil was the real one")
    18  	}
    19  	a.Test()
    20  }
    21  

View as plain text