]> git.proxmox.com Git - rustc.git/blame - src/test/ui/missing/missing-items/missing-type-parameter.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / missing / missing-items / missing-type-parameter.rs
CommitLineData
476ff2be
SL
1fn foo<X>() { }
2
3fn main() {
ff7c6d11 4 foo(); //~ ERROR type annotations needed
223e47cc 5}