Source file test/typeparam/importtest.go

     1  // compile
     2  
     3  // Copyright 2020 The Go Authors. All rights reserved.
     4  // Use of this source code is governed by a BSD-style
     5  // license that can be found in the LICENSE file.
     6  
     7  // This file checks that basic importing works in -G mode.
     8  
     9  package p
    10  
    11  import "fmt"
    12  import "math"
    13  
    14  func f(x float64) {
    15  	fmt.Println(math.Sin(x))
    16  }
    17  

View as plain text