summary refs log tree commit diff
path: root/src/test/ui/resolve/issue-5035-2.rs
blob: f88a2375a4315094233414ca7d43d6b08ce91e69 (plain)
1
2
3
4
5
6
7
trait I {}
type K = I+'static;

fn foo(_x: K) {}
//~^ ERROR the size for values of type

fn main() {}