@@ -8701,7 +8701,7 @@ func newPtr[T any](t T) *T {
8701
8701
return & t
8702
8702
}
8703
8703
8704
- func TestTypeAssert (t * testing.T ) {
8704
+ func TestTypeAssertConcreteTypes (t * testing.T ) {
8705
8705
testTypeAssert (t , int (1111 ))
8706
8706
testTypeAssert (t , int (111111111 ))
8707
8707
testTypeAssert (t , int (- 111111111 ))
@@ -8714,13 +8714,41 @@ func TestTypeAssert(t *testing.T) {
8714
8714
testTypeAssert (t , newPtr (111111111 ))
8715
8715
testTypeAssert (t , newPtr (- 111111111 ))
8716
8716
testTypeAssert (t , newPtr ([2 ]int {- 111111111 , - 22222222 }))
8717
-
8717
+ testTypeAssert ( t , [ 2 ] * int { newPtr ( - 111111111 ), newPtr ( - 22222222 )})
8718
8718
testTypeAssert (t , newPtr (time .Now ()))
8719
8719
8720
8720
testTypeAssertDifferentType [uint ](t , int (111111111 ))
8721
8721
testTypeAssertDifferentType [uint ](t , int (- 111111111 ))
8722
8722
}
8723
8723
8724
+ func TestTypeAssertInterfaceTypes (t * testing.T ) {
8725
+ v , ok := TypeAssert [any ](ValueOf (1 ))
8726
+ if v != any (1 ) || ! ok {
8727
+ t .Errorf ("TypeAssert[any](1) = (%v, %v); want = (1, true)" , v , ok )
8728
+ }
8729
+
8730
+ v , ok = TypeAssert [fmt.Stringer ](ValueOf (1 ))
8731
+ if v != nil || ok {
8732
+ t .Errorf ("TypeAssert[fmt.Stringer](1) = (%v, %v); want = (1, false)" , v , ok )
8733
+ }
8734
+
8735
+ v , ok = TypeAssert [any ](ValueOf (testTypeWithMethod {"test" }))
8736
+ if v != any (testTypeWithMethod {"test" }) || ! ok {
8737
+ t .Errorf (`TypeAssert[any](testTypeWithMethod{"test"}) = (%v, %v); want = (testTypeWithMethod{"test"}, true)` , v , ok )
8738
+ }
8739
+
8740
+ v , ok = TypeAssert [fmt.Stringer ](ValueOf (testTypeWithMethod {"test" }))
8741
+ if v != fmt .Stringer (testTypeWithMethod {"test" }) || ! ok {
8742
+ t .Errorf (`TypeAssert[fmt.Stringer](testTypeWithMethod{"test"}) = (%v, %v); want = (testTypeWithMethod{"test"}, true)` , v , ok )
8743
+ }
8744
+
8745
+ val := & testTypeWithMethod {"test" }
8746
+ v , ok = TypeAssert [fmt.Stringer ](ValueOf (val ))
8747
+ if v != fmt .Stringer (val ) || ! ok {
8748
+ t .Errorf (`TypeAssert[fmt.Stringer](&testTypeWithMethod{"test"}) = (%v, %v); want = (&testTypeWithMethod{"test"}, true)` , v , ok )
8749
+ }
8750
+ }
8751
+
8724
8752
type testTypeWithMethod struct {
8725
8753
val string
8726
8754
}
0 commit comments