mirror of
https://github.com/golang/go
synced 2024-11-23 03:40:02 -07:00
48e5110151
bug126.go:7:7: error: redefinition of 'none' bug126.go:6:7: note: previous definition of 'none' was here R=gri DELTA=3 (1 added, 0 deleted, 2 changed) OCL=20563 CL=20723
12 lines
346 B
Go
12 lines
346 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
|
|
|
|
// same const identifier declared twice should not be accepted
|
|
const none = 0 // GCCGO_ERROR "previous"
|
|
const none = 1 // ERROR "redeclared|redef"
|