Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 659 for errorCheck (0.18 sec)

  1. test/fixedbugs/bug351.go

    // errorcheck
    
    // Copyright 2011 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
    
    var x int
    
    func main() {
    	(x) := 0  // ERROR "non-name [(]x[)]|non-name on left side"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 277 bytes
    - Viewed (0)
  2. test/fixedbugs/issue23116.go

    // errorcheck
    
    // Copyright 2018 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
    
    func f(x interface{}) {
    	switch x.(type) {
    	}
    
    	switch t := x.(type) { // ERROR "declared and not used"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 295 bytes
    - Viewed (0)
  3. test/fixedbugs/issue20233.go

    // errorcheck
    
    // Copyright 2017 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.
    
    // Issue 20233: panic while formatting an error message
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 21:53:49 UTC 2017
    - 286 bytes
    - Viewed (0)
  4. test/fixedbugs/issue42075.go

    // errorcheck
    
    // Copyright 2020 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 "unsafe"
    
    type T struct { // ERROR "recursive type"
    	x int
    	p unsafe.Pointer
    
    	f T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 19 21:30:43 UTC 2020
    - 278 bytes
    - Viewed (0)
  5. test/syntax/semi3.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() {
    	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)
  6. test/syntax/semi5.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()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 262 bytes
    - Viewed (0)
  7. test/fixedbugs/issue22351.go

    // errorcheck
    
    // Copyright 2017 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
    
    import "unsafe"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 24 02:28:02 UTC 2017
    - 268 bytes
    - Viewed (0)
  8. test/fixedbugs/issue3705.go

    // errorcheck
    
    // 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
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 251 bytes
    - Viewed (0)
  9. test/fixedbugs/issue17758.go

    // errorcheck
    
    // Copyright 2020 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 foo() {
    	_ = func() {}
    }
    
    func foo() { // ERROR "foo redeclared in this block|redefinition of .*foo.*"
    	_ = func() {}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 17:26:06 UTC 2020
    - 330 bytes
    - Viewed (0)
  10. test/fixedbugs/issue52748.go

    // errorcheck
    
    // Copyright 2022 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 "unsafe"
    
    type S[T any] struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 297 bytes
    - Viewed (0)
Back to top