build: separate compiler and libs
This commit is contained in:
12
compiler/cl/_testdata/fncall/in.go
Normal file
12
compiler/cl/_testdata/fncall/in.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package main
|
||||
|
||||
func max(a, b int) int {
|
||||
if a > b {
|
||||
return a
|
||||
}
|
||||
return b
|
||||
}
|
||||
|
||||
func main() {
|
||||
_ = max(1, 2)
|
||||
}
|
||||
Reference in New Issue
Block a user