Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 71 for bug17b (4.9 sec)

  1. test/fixedbugs/bug112.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    type T struct { s string }
    var t = T{"hi"}
    
    func main() {}
    
    /*
    bug112.go:6: illegal conversion of constant to T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 301 bytes
    - Viewed (0)
  2. test/fixedbugs/bug111.go

    type Stucky struct {
    	n int
    }
    
    func (s *Stucky) Me() Iffy {
    	ncall++;
    	return s
    }
    
    func main() {
    	s := new(Stucky);
    	i := s.Me();
    	j := i.Me();
    	j.Me();
    	if ncall != 3 {
    		panic("bug111")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 427 bytes
    - Viewed (0)
  3. test/fixedbugs/bug156.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func f(a int64) int64 {
    	const b int64 = 0;
    	n := a &^ b;
    	return n;
    }
    
    func main() {
    	f(1)
    }
    
    /*
    bug156.go:7: constant 18446744073709551615 overflows int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 346 bytes
    - Viewed (0)
  4. test/fixedbugs/bug170.go

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

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

    Russ Cox <******@****.***> 1405553230 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 16 23:27:10 UTC 2014
    - 442 bytes
    - Viewed (0)
  7. test/fixedbugs/bug174.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
    - 231 bytes
    - Viewed (0)
  8. test/fixedbugs/bug176.go

    Dan Scales <******@****.***> 1638576610 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 312 bytes
    - Viewed (0)
  9. test/fixedbugs/bug179.go

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

    Russ Cox <******@****.***> 1329454170 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 558 bytes
    - Viewed (0)
Back to top