rust/tests/ui/error-codes/E0403.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
59 B
Rust
Raw Normal View History

2016-08-15 06:58:28 -05:00
fn foo<T, T>(s: T, u: T) {} //~ ERROR E0403
fn main() {
}