Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for issue11325 (0.2 sec)

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

    		var s struct { Whitespace uint64 }
    		var ch rune
    		for s.Whitespace&(1<<uint(ch)) != 0 {}
    	}
    }
    
    func issue5895() {
    	var x = 'a' << 1 // type of x must be rune
    	var _ rune = x
    }
    
    func issue11325() {
    	var _ = 0 >> 1.1 /* ERROR "truncated to uint" */ // example from issue 11325
    	_ = 0 >> 1.1 /* ERROR "truncated to uint" */
    	_ = 0 << 1.1 /* ERROR "truncated to uint" */
    	_ = 0 >> 1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. test/fixedbugs/issue11371.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 11371 (cmd/compile: meaningless error message "truncated to
    // integer")
    
    package issue11371
    
    const a int = 1.1        // ERROR "constant 1.1 truncated to integer|floating-point constant truncated to integer|truncated to int|truncated"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 23 05:11:09 UTC 2021
    - 946 bytes
    - Viewed (0)
  3. test/fixedbugs/issue11326.go

    Robert Griesemer <******@****.***> 1616044396 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 23 05:11:09 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. src/go/parser/testdata/issue11377.src

    Robert Griesemer <******@****.***> 1698787325 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 542 bytes
    - Viewed (0)
  5. test/fixedbugs/issue13265.go

    Dmitri Shuralyov <******@****.***> 1697569678 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 438 bytes
    - Viewed (0)
  6. test/fixedbugs/issue10135.go

    Shenghou Ma <******@****.***> 1426090070 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 12 00:08:38 UTC 2015
    - 597 bytes
    - Viewed (0)
  7. test/fixedbugs/issue10320.go

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

    Robert Griesemer <******@****.***> 1632355680 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 19:41:41 UTC 2021
    - 460 bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue51025.go

    Robert Griesemer <******@****.***> 1670366619 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 723 bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue51525.go

    Robert Griesemer <******@****.***> 1670366619 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 511 bytes
    - Viewed (0)
Back to top