2012-02-16 23:51:04 -05:00
|
|
|
// errorcheck
|
2010-01-26 23:13:22 -08:00
|
|
|
|
2016-04-10 14:32:26 -07:00
|
|
|
// Copyright 2010 The Go Authors. All rights reserved.
|
2010-01-26 23:13:22 -08:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2010-01-28 15:57:44 -08:00
|
|
|
"io", // ERROR "unexpected comma"
|
2010-01-26 23:13:22 -08:00
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
|
|
|
|