blob: 6c0c07b3934f7fe8a847720c3b5095630937d236 [file] [log] [blame]
public struct Box<T> {
public let value: T
}
public protocol P {
associatedtype A
associatedtype B
}
public struct Bar<T : P> {
public let a: T.A
public let b: T.B
public let c: (T.A, T.B)
}