mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
A parse-only option is needed for parse performance tracking and the current option also includes semantic analysis.
17 lines
635 B
Swift
17 lines
635 B
Swift
// RUN: %target-swift-frontend -typecheck %s -enable-source-import -I %S/Inputs -parse-as-library
|
|
// RUN: %target-swift-frontend -typecheck %s -enable-source-import -I %S/Inputs
|
|
// RUN: %target-swift-frontend -typecheck %S/Inputs/MutualDependencyHelper.swift -enable-source-import -I %S
|
|
|
|
// FIXME: We should be able to handle this even in -i mode.
|
|
// RUN: %target-swift-frontend -interpret -I %S/Inputs -enable-source-import %s -verify
|
|
|
|
|
|
import MutualDependencyHelper
|
|
|
|
public class MyClass {
|
|
// FIXME: This is an error in -i mode.
|
|
public var delegate : MyDelegate // expected-error {{use of undeclared type}}
|
|
|
|
public init() {}
|
|
}
|