blob: ffd29e057a9bb377d97e198a4279e0e7e3458698 [file] [log] [blame]
Russ Cox0b477ef2012-02-16 23:48:57 -05001// errorcheck
Rob Pike094ee442008-06-06 16:56:18 -07002
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
9func main() {
Rob Pike74dd0ab2009-08-17 13:30:22 -070010 var x int;
11 x := 0; // ERROR "declar|:="
Russ Coxae54cf72009-09-15 12:42:24 -070012 _ = x;
Rob Pike094ee442008-06-06 16:56:18 -070013}