summary refs log tree commit diff
path: root/src/test/ui/const-generics/issue-60818-struct-constructors.rs
AgeCommit message (Collapse)AuthorLines
2019-07-03Migrate compile-pass annotations to build-passYuki Okushi-1/+1
2019-05-29Fix ICE with struct ctors and const generics.David Wood-0/+10
This commit fixes a ICE where struct constructors were resulting in an ICE with const generics. Previously, a `match` in `type_of` did not have an arm for the `DefKind::Ctor` resolutions and therefore would assume that the type did not have generics.