blob: 5670ce028b7af361cf295bb9a71452ff630dc75a [file] [log] [blame]
Robert Griesemer6c5fc052008-11-18 09:39:34 -08001// errchk $G $D/$F.go
2
3// Copyright 2009 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7package main
8
9import (
10 OS "os" // should require semicolon here; this is no different from other decls
Russ Cox5fbadf02009-03-12 19:57:30 -070011 IO "io" // ERROR "missing|syntax"
Robert Griesemer6c5fc052008-11-18 09:39:34 -080012)
13
14func main() {
15}