mirror of
https://github.com/golang/go
synced 2024-11-12 02:50:25 -07:00
3c638f2892
Fixes #2520 R=rsc CC=golang-dev https://golang.org/cl/5482056
13 lines
299 B
Go
13 lines
299 B
Go
// errchk $G $D/$F.go
|
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Issue 2520
|
|
|
|
package main
|
|
func main() {
|
|
if 2e9 { } // ERROR "2e.09"
|
|
if 3.14+1i { } // ERROR "3.14 . 1i"
|
|
} |