Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for GCCGO_ERROR (0.6 sec)

  1. test/fixedbugs/issue4510.dir/f1.go

    // Copyright 2012 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 p
    
    import "fmt" // GCCGO_ERROR "fmt redeclared|imported"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 245 bytes
    - Viewed (0)
  2. test/syntax/semi3.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	for x; y; z	// ERROR "expected .*{.* after for clause|undefined"
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 09 03:54:47 UTC 2017
    - 305 bytes
    - Viewed (0)
  3. test/fixedbugs/issue4610.go

    // license that can be found in the LICENSE file.
    
    package main
    
    type bar struct {
    	x int
    }
    
    func main() {
    	var foo bar
    	_ = &foo{} // ERROR "is not a type|expected .;."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 13 01:18:12 UTC 2013
    - 335 bytes
    - Viewed (0)
  4. test/fixedbugs/bug251.go

    // license that can be found in the LICENSE file.
    
    package main
    
    type I1 interface { // GC_ERROR "invalid recursive type"
    	m() I2
    	I2
    }
    
    type I2 interface {
    	I1 // GCCGO_ERROR "loop|interface"
    }
    
    
    var i1 I1 = i2
    var i2 I2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 21:45:05 UTC 2020
    - 362 bytes
    - Viewed (0)
  5. test/fixedbugs/bug374.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // issue 1556
    package foo
    
    type I interface {
    	m() int
    }
    
    type T int
    
    var _ I = T(0)	// GCCGO_ERROR "incompatible"
    
    func (T) m(buf []byte) (a int, b xxxx) {  // ERROR "xxxx"
    	return 0, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 366 bytes
    - Viewed (0)
  6. test/fixedbugs/bug040.go

    // errorcheck
    
    // 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
    
    func f (x,		// GCCGO_ERROR "previous"
    	x int) {	// ERROR "duplicate argument|redefinition|redeclared"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 03 17:55:56 UTC 2020
    - 293 bytes
    - Viewed (0)
  7. test/syntax/semi7.go

    // errorcheck
    
    // Copyright 2010 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
    
    func main() {
    	if x { }	// GCCGO_ERROR "undefined"
    	else { }	// ERROR "unexpected semicolon or newline before .?else.?|unexpected else"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 329 bytes
    - Viewed (0)
  8. test/fixedbugs/bug126.go

    // 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"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 339 bytes
    - Viewed (0)
  9. test/fixedbugs/issue7525c.go

    // license that can be found in the LICENSE file.
    
    // Issue 7525: self-referential array types.
    
    package main
    
    var z struct { // GC_ERROR "initialization cycle: z refers to itself"
    	e [cap(z.e)]int // GCCGO_ERROR "array bound|typechecking loop|invalid array"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 14:21:33 UTC 2022
    - 385 bytes
    - Viewed (0)
  10. test/fixedbugs/issue14520.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package f
    
    func f(x int /* // GC_ERROR "unexpected newline"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 294 bytes
    - Viewed (0)
Back to top