build: separate compiler and libs
This commit is contained in:
14
compiler/cl/_testrt/freevars/in.go
Normal file
14
compiler/cl/_testrt/freevars/in.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package main
|
||||
|
||||
func main() {
|
||||
func(resolve func(error)) {
|
||||
func(err error) {
|
||||
if err != nil {
|
||||
resolve(err)
|
||||
return
|
||||
}
|
||||
resolve(nil)
|
||||
}(nil)
|
||||
}(func(err error) {
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user