rust/tests/ui/generics/foreign-generic-mismatch.rs

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

11 lines
382 B
Rust
Raw Normal View History

2023-04-17 16:56:42 -05:00
//@ aux-build: foreign-generic-mismatch.rs
extern crate foreign_generic_mismatch;
fn main() {
foreign_generic_mismatch::const_arg::<()>();
//~^ ERROR function takes 2 generic arguments but 1 generic argument was supplied
foreign_generic_mismatch::lt_arg::<'static, 'static>();
//~^ ERROR function takes 1 lifetime argument but 2 lifetime arguments were supplied
}