[lang-ref] ( determine_type_descendant ) ( swift )
@Test func determineTypeDescendant() {
class Parent {
}
class Child: Parent {
}
let parent: Any = Parent()
let child: Any = Child()
#expect(parent is Parent)
#expect(child is Parent)
#expect(child is Child)
}