blob: f1b553af89c718ca4c1271a502dba662e1325d46 [file] [log] [blame]
public struct Outer<T> {
public struct Inner<U> {
public init() {}
}
}
extension Outer.Inner {
public func extensionMethod(t: T) -> U {
while true {}
}
}