blob: c07a6012c7844703377d4108db62ac57906d3fa0 [file] [log] [blame]
// RUN: %target-swift-frontend %s -emit-ir
// REQUIRES: objc_interop
// Distributed under the terms of the MIT license
// Test case submitted to project by https://github.com/practicalswift (practicalswift)
// rdar://18633758
import Foundation
extension NSFileManager {
enum C {
}
class D {
class var a: Dictionary<String, C> {
struct E {
static var e = Dictionary<String, C>()
}
return E.e
}
}
}