mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Most tests were using %swift or similar substitutions, which did not include the target triple and SDK. The driver was defaulting to the host OS. Thus, we could not run the tests when the standard library was not built for OS X. Swift SVN r24504
31 lines
915 B
Swift
31 lines
915 B
Swift
// RUN: %target-parse-verify-swift
|
|
|
|
protocol P {
|
|
typealias A
|
|
func generate() -> Int
|
|
}
|
|
func f<U: P>(rhs: U) -> X<U.A> { // expected-error {{use of undeclared type 'X'}}
|
|
let g = rhs.generate() // expected-error {{cannot invoke 'generate' with no arguments}}
|
|
}
|
|
|
|
struct Zzz<T> {
|
|
subscript (a: Foo) -> Zzz<T> { // expected-error 2 {{use of undeclared type 'Foo'}}
|
|
get: // expected-error {{expected '{' to start getter definition}}
|
|
set:
|
|
for i in value {}
|
|
}
|
|
}
|
|
|
|
protocol _CollectionType {
|
|
typealias Index
|
|
typealias _Element
|
|
subscript(i: Index) -> _Element {get}
|
|
}
|
|
|
|
protocol CollectionType : _CollectionType, SequenceType {
|
|
subscript(i: Index) -> Generator.Element {get set }
|
|
}
|
|
func insertionSort<C: Mutable> (inout elements: C, i: C.Index) { // expected-error {{use of undeclared type 'Mutable'}} expected-error {{'Index' is not a member type of 'C'}}
|
|
var x: C.Generator.Element = elements[i]
|
|
}
|