Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for t14 (0.11 sec)

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

    func init() {
    	assert(unsafe.Sizeof(g1) == 8)
    	assert(unsafe.Sizeof(x2) == 8)
    }
    
    func h() [h /* ERROR "no value" */ ()[0]]int { panic(0) }
    
    var c14 /* ERROR "cycle" */ T14
    type T14 [uintptr(unsafe.Sizeof(&c14))]byte
    
    // issue #34333
    type T15 /* ERROR "invalid recursive type T15" */ struct {
    	f func() T16
    	b T16
    }
    
    type T16 struct {
    	T15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/cycles5a.go

    func init() {
    	assert(unsafe.Sizeof(g1) == 8)
    	assert(unsafe.Sizeof(x2) == 8)
    }
    
    func h() [h /* ERROR "no value" */ ()[0]]int { panic(0) }
    
    var c14 /* ERROR "cycle" */ T14
    type T14 [uintptr(unsafe.Sizeof(&c14))]byte
    
    // issue #34333
    type T15 /* ERROR "invalid recursive type T15" */ struct {
    	f func() T16
    	b T16
    }
    
    type T16 struct {
    	T15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/sccp_test.go

    			Valu("t12", OpNeg64, c.config.Types.Int64, 0, nil, "t11"),
    			Valu("t13", OpFloor, c.config.Types.Float64, 0, nil, "v3"),
    			Valu("t14", OpSqrt, c.config.Types.Float64, 0, nil, "t13"),
    			Valu("t15", OpCeil, c.config.Types.Float64, 0, nil, "t14"),
    			Valu("t16", OpTrunc, c.config.Types.Float64, 0, nil, "t15"),
    			Valu("t17", OpRoundToEven, c.config.Types.Float64, 0, nil, "t16"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/testdata/exports.go

    	T9  struct {
    		a    int
    		b, c float32
    		d    []string `go:"tag"`
    	}
    	T10 struct {
    		T8
    		T9
    		_ *T10
    	}
    	T11 map[int]string
    	T12 any
    	T13 interface {
    		m1()
    		m2(int) float32
    	}
    	T14 interface {
    		T12
    		T13
    		m3(x ...struct{}) []T9
    	}
    	T15 func()
    	T16 func(int)
    	T17 func(x int)
    	T18 func() float32
    	T19 func() (x float32)
    	T20 func(...any)
    	T21 struct{ next *T21 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TaskContainerDslIntegrationTest.kt

                    destinationDir = file("out")
                }
    
                val t12: TaskProvider<Task> = tasks.named("bat")
                val t13: TaskProvider<Copy> = tasks.named("bat", Copy::class)
                val t14: TaskProvider<Copy> = tasks.named<Copy>("bat")
    
                val t15: TaskProvider<Task> = tasks.named("pipistrelle") {
                    description += "A"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 15K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/decls1.go

    	t8 *int = & /* ERRORx `cannot use .* variable declaration` */ a
    	t10 *int = &42 /* ERROR "cannot take address" */
    	t11 *complex64 = &v
    	t12 complex64 = -(u + *t11) / *&v
    	t13 int = a /* ERROR "shifted operand" */ << d
    	t14 int = i << j
    	t15 math /* ERROR "math is not a type" */
    	t16 math.xxx /* ERROR "undefined" */
    	t17 math /* ERROR "not a type" */ .Pi
    	t18 float64 = math.Pi * 10.0
    	t19 int = t1 /* ERROR "cannot call" */ ()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top