Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for issue14229 (0.74 sec)

  1. src/internal/types/testdata/check/issues0.go

    	make(chan I1) <- i2 /* ERROR "wrong type for method foo" */
    }
    
    // Check that constants representable as integers are in integer form
    // before being used in operations that are only defined on integers.
    func issue14229() {
    	// from the issue
    	const _ = int64(-1<<63) % 1e6
    
    	// related
    	const (
    		a int = 3
    		b = 4.0
    		_ = a / b
    		_ = a % b
    		_ = b / a
    		_ = b % a
    	)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. test/fixedbugs/issue14729.go

    Robert Griesemer <******@****.***> 1608586883 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 469 bytes
    - Viewed (0)
  3. test/fixedbugs/issue14999.go

    Cherry Mui <******@****.***> 1622759147 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 04 17:00:19 UTC 2021
    - 535 bytes
    - Viewed (0)
  4. test/fixedbugs/issue16249.go

    Ian Lance Taylor <******@****.***> 1467413052 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 02 00:40:40 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testerrors/testdata/issue14669.go

    Austin Clements <******@****.***> 1683216807 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 368 bytes
    - Viewed (0)
  6. test/fixedbugs/issue10219.go

    Ian Lance Taylor <******@****.***> 1436937461 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 15 06:04:51 UTC 2015
    - 297 bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue51229.go

    Robert Griesemer <******@****.***> 1670545237 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. test/fixedbugs/issue12226.go

    Ulrich Kunitz <******@****.***> 1440089778 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 25 18:10:14 UTC 2015
    - 331 bytes
    - Viewed (0)
  9. test/fixedbugs/issue14725.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 856 bytes
    - Viewed (0)
  10. test/fixedbugs/issue41239.go

    Keith Randall <******@****.***> 1601000793 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 25 03:59:54 UTC 2020
    - 393 bytes
    - Viewed (0)
Back to top