Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 73 for bug111 (0.15 sec)

  1. test/fixedbugs/bug061.go

    package main
    
    func main() {
    	var s string;
    	s = "0000000000000000000000000000000000000000000000000000000000"[0:7];
    	_ = s;
    }
    
    /*
    uetli:~/Source/go1/test/bugs gri$ 6g bug061.go
    Bus error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 357 bytes
    - Viewed (0)
  2. test/fixedbugs/bug071.go

    // compile
    
    // 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 bug071
    
    type rat struct  {
    	den  int;
    }
    
    func (u *rat) pr() {
    }
    
    type dch struct {
    	dat chan  *rat;
    }
    
    func dosplit(in *dch){
    	dat := <-in.dat;
    	_ = dat;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 336 bytes
    - Viewed (0)
  3. test/fixedbugs/bug120.go

    		t := tests[i]
    		v := strconv.FormatFloat(t.f, 'g', -1, 64)
    		if v != t.out {
    			println("Bad float64 const:", t.in, "want", t.out, "got", v)
    			x, err := strconv.ParseFloat(t.out, 64)
    			if err != nil {
    				println("bug120: strconv.Atof64", t.out)
    				panic("fail")
    			}
    			println("\twant exact:", strconv.FormatFloat(x, 'g', 1000, 64))
    			println("\tgot exact: ", strconv.FormatFloat(t.f, 'g', 1000, 64))
    			ok = false
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 1.8K bytes
    - Viewed (0)
  4. test/fixedbugs/bug101.go

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

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

    Rémy Oudompheng <******@****.***> 1329599742 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 255 bytes
    - Viewed (0)
  7. test/fixedbugs/bug117.go

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

    Rémy Oudompheng <******@****.***> 1329599742 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 491 bytes
    - Viewed (0)
  9. test/fixedbugs/bug181.go

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

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 377 bytes
    - Viewed (0)
Back to top