mirror of
https://github.com/golang/go
synced 2024-11-18 01:04:48 -07:00
d12c1b99c7
R=gri DELTA=1 (0 added, 0 deleted, 1 changed) OCL=19460 CL=19500
16 lines
336 B
Go
16 lines
336 B
Go
// errchk $G $D/$F.go
|
|
|
|
// Copyright 2009 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.
|
|
|
|
package main
|
|
|
|
import (
|
|
OS "os" // should require semicolon here; this is no different from other decls
|
|
IO "io" // ERROR "missing"
|
|
)
|
|
|
|
func main() {
|
|
}
|