Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 659 for errorCheck (0.1 sec)

  1. test/fixedbugs/issue35518.go

    // errorcheck -0 -l -m=2
    
    // Copyright 2019 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.
    
    // This test makes sure that -m=2's escape analysis diagnostics don't
    // go into an infinite loop when handling negative dereference
    // cycles. The critical thing being tested here is that compilation
    // succeeds ("errorcheck -0"), not any particular diagnostic output,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 12 21:02:24 UTC 2019
    - 847 bytes
    - Viewed (0)
  2. test/fixedbugs/bug037.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 main() {
    	s := vlong(0);  // ERROR "undef"
    	_ = s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 18:13:13 UTC 2023
    - 246 bytes
    - Viewed (0)
  3. test/fixedbugs/bug241.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
    
    const c = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:59 UTC 2012
    - 239 bytes
    - Viewed (0)
  4. test/fixedbugs/bug030.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 main() {
    	var x int;
    	x := 0; // ERROR "declar|:="
    	_ = x;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 255 bytes
    - Viewed (0)
  5. test/fixedbugs/issue4517a.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
    - 245 bytes
    - Viewed (0)
  6. test/fixedbugs/issue4517b.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
    - 247 bytes
    - Viewed (0)
  7. test/uintptrkeepalive.go

    // errorcheck -std
    
    // 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
    
    //go:uintptrkeepalive
    func missingNosplit(uintptr) { // ERROR "go:uintptrkeepalive requires go:nosplit"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 21 18:06:38 UTC 2022
    - 297 bytes
    - Viewed (0)
  8. 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)
  9. test/fixedbugs/bug074.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 main() {
    	x := string{'a', 'b', '\n'};	// ERROR "composite"
    	print(x);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 267 bytes
    - Viewed (0)
  10. test/fixedbugs/bug172.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() {
    	a := true;
    	a |= a;	// ERROR "illegal.*OR|bool|expected"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 260 bytes
    - Viewed (0)
Back to top