blob: 42cad6426ccc325ca7a236df82d7f758867f461e [file] [log] [blame]
// RUN: %target-typecheck-verify-swift
func foo() {
// Okay to reference a type declared later in the same function.
_ = Visitor()
struct Visitor { }
}