mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
8 lines
286 B
Swift
8 lines
286 B
Swift
// {"signature":"swift::ASTWalker::PostWalkResult<swift::DynamicTypeExpr*> (anonymous namespace)::Verifier::dispatchVisitPost<swift::DynamicTypeExpr*>(swift::DynamicTypeExpr*)"}
|
|
// RUN: not --crash %target-swift-frontend -typecheck %s
|
|
class a {
|
|
}
|
|
[].filter {
|
|
type(of: $0) == a.self
|
|
}
|