11 lines
126 B
Go
11 lines
126 B
Go
package main
|
|
|
|
func main() {
|
|
var a int = 3
|
|
a += 1.3
|
|
println(a)
|
|
}
|
|
|
|
// Error:
|
|
// 5:2: illegal operand types for '+=' operator
|