Files
swift-mirror/test/ImportResolution/Inputs/letters.swift
Hamish Knight 5b99c2020f NFC: Re-organize NameBinding tests
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.
2020-03-29 18:51:09 -07:00

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) {}