mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
The directory currently seems to have a mix of tests for import resolution and name lookup. Therefore split it into two directories; ImportResolution and NameLookup.
17 lines
306 B
Swift
17 lines
306 B
Swift
@_exported import abcde
|
|
@_exported import aeiou
|
|
@_exported import struct aeiou.E
|
|
@_exported import struct asdf.D
|
|
import struct asdf.S
|
|
|
|
public struct C {
|
|
public var b : B
|
|
public init(b: B) { self.b = b }
|
|
}
|
|
|
|
public struct F { public init() {} }
|
|
|
|
public var myS : S = S()
|
|
public func consumeS(_ s: S) {}
|
|
|