summary refs log tree commit diff
path: root/src/test/compile-fail/issue-1763.rs
blob: ba4828f88bc676dd693902271e1f9b17517310de (plain)
1
2
3
4
5
6
7
// Issue #1763 - infer types correctly

type actor<T> = { //~ ERROR type parameter `T` is unused
    unused: bool
};

fn main() {}