Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Types17 (0.24 sec)

  1. test/fixedbugs/issue21979.go

    	_ = uint(-1)   // ERROR "constant -1 overflows uint|integer constant overflow|cannot convert -1 \(untyped int constant\) to type uint"
    	_ = uint(1)
    	_ = uint(1.0)
    	// types1 reports extra error "truncated to integer"
    	_ = uint(-4 + 2i) // ERROR "constant -4 overflows uint|truncated to integer|cannot convert -4 \+ 2i \(untyped complex constant.*\) to type uint"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    // Head for the first type in the list, and Tail for the rest of the
    // list.
    
    // The empty type list.
    struct Types0 {};
    
    // Type lists of length 1, 2, 3, and so on.
    
    template <typename T1>
    struct Types1 {
      typedef T1 Head;
      typedef Types0 Tail;
    };
    
    $range i 2..n
    
    $for i [[
    $range j 1..i
    $range k 2..i
    template <$for j, [[typename T$j]]>
    struct Types$i {
      typedef T1 Head;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top