Commits

Ben Langmuir committed 65c86b713d6
[ReconstructType] Fix decl lookup when there are multiple constructors We were failing to find init() decls whenever there was more than one candidate. The mangled function type we get will be (args...) -> T, but the real thing is (T.Type) -> (args...) -> T. Strip the metatype so we can match successfully.