mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-30 16:48:40 +00:00
04d1261f8a
This improves error reporting slightly.
13 lines
275 B
Go
13 lines
275 B
Go
package main
|
|
|
|
//go:wasmimport foo bar
|
|
func foo() {
|
|
}
|
|
|
|
//go:align 7
|
|
var global int
|
|
|
|
// ERROR: # command-line-arguments
|
|
// ERROR: compiler.go:4:6: can only use //go:wasmimport on declarations
|
|
// ERROR: compiler.go:8:5: global variable alignment must be a positive power of two
|