Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for bug18b (0.1 sec)

  1. test/fixedbugs/bug132.go

    Robert Griesemer <******@****.***> 1606873032 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 03 17:55:56 UTC 2020
    - 250 bytes
    - Viewed (0)
  2. test/fixedbugs/bug152.go

    Russ Cox <******@****.***> 1329454170 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 292 bytes
    - Viewed (0)
  3. test/fixedbugs/bug144.go

    // license that can be found in the LICENSE file.
    
    package main
    
    const c = 1;
    
    func main() {
    	c := 0;
    	_ = c;
    }
    
    /*
    bug144.go:8: left side of := must be a name
    bug144.go:8: operation LITERAL not allowed in assignment context
    bug144.go:8: illegal types for operand: AS
    	ideal
    	int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 404 bytes
    - Viewed (0)
  4. test/fixedbugs/bug143.go

    	}
    	{
    		x, ok := f()["key"];
    		_, _ = x, ok;
    	}
    	{
    		var x int;
    		var ok bool;
    		x, ok = f()["key"];
    		_, _ = x, ok;
    	}
    }
    
    /*
     * bug143.go:19: assignment count mismatch: 2 = 1
     * bug143.go:18: x: undefined
     * bug143.go:18: ok: undefined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 647 bytes
    - Viewed (0)
  5. test/fixedbugs/bug167.go

    		x int
    	}
    }
    
    func f2() {
    	type T struct {
    		x float64
    	}
    }
    
    func main() {
    	f1()
    	f2()
    }
    
    /*
    1606416576: conflicting definitions for main.T·bug167
    bug167.6:	type main.T·bug167 struct { x int }
    bug167.6:	type main.T·bug167 struct { x float64 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 23:19:59 UTC 2012
    - 462 bytes
    - Viewed (0)
  6. test/fixedbugs/bug010.go

    package main
    
    
    func f(i int, f float64) {
    	i = 8
    	f = 8.0
    	return
    }
    
    func main() {
    	f(3, float64(5))
    }
    
    /*
    bug10.go:5: i undefined
    bug10.go:6: illegal conversion of constant to 020({},<_o001>{<i><int32>INT32;<f><float32>FLOAT32;},{})
    bug10.go:7: error in shape across assignment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 450 bytes
    - Viewed (0)
  7. test/fixedbugs/bug286.go

    	test2(x)
    	test3(x)
    	if error_ {
    		panic("wrong method called")
    	}
    }
    
    /*
    6g bug286.go && 6l bug286.6 && 6.out
    test2 called g
    panic: wrong method called
    
    panic PC=0x24e040
    runtime.panic+0x7c /home/gri/go1/src/pkg/runtime/proc.c:1012
    	runtime.panic(0x0, 0x24e0a0)
    main.main+0xef /home/gri/go1/test/bugs/bug286.go:76
    	main.main()
    mainstart+0xf /home/gri/go1/src/pkg/runtime/amd64/asm.s:60
    	mainstart()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  8. test/fixedbugs/bug161.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package P
    
    const a = 0;
    
    func f(a int) {
    	a = 0;
    }
    
    /*
    bug161.go:8: operation LITERAL not allowed in assignment context
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 295 bytes
    - Viewed (0)
  9. test/fixedbugs/bug218.go

    // Crashes 6g, 8g
    // https://golang.org/issue/238
    
    package main
    
    func main() {
    	bar := make(chan bool);
    	select {
    	case _ = <-bar:
    		return
    	}
    }
    
    /*
    6g bug218.go 
    <epoch>: fatal error: dowidth: unknown type: blank
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 11 14:36:33 UTC 2015
    - 389 bytes
    - Viewed (0)
  10. test/fixedbugs/bug083.dir/bug1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package bug1
    
    import "./bug0"
    
    // This is expected to fail--t0 is in package bug0 and should not be
    // visible here in package bug1.  The test for failure is in
    // ../bug083.go.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 372 bytes
    - Viewed (0)
Back to top