about summary refs log tree commit diff
path: root/tests/ui/wf/ice-hir-wf-issue-135341.rs
blob: 7428575aee0dbe3b2bd090f3ac5ca4057e63ece3 (plain)
1
2
3
4
type A<T> = B;
type B = _; //~ ERROR the placeholder `_` is not allowed within types on item signatures for type aliases

fn main() {}