rust/tests/ui/polymorphization/promoted-function-2.rs

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

17 lines
368 B
Rust
Raw Normal View History

//@ build-fail
//@ compile-flags:-Zpolymorphize=on
#![crate_type = "lib"]
2021-08-25 20:31:18 +08:00
#![feature(generic_const_exprs, rustc_attrs)]
//~^ WARN the feature `generic_const_exprs` is incomplete
#[rustc_polymorphize_error]
fn test<T>() {
//~^ ERROR item has unused generic parameters
let x = [0; 3 + 4];
}
pub fn caller() {
test::<String>();
test::<Vec<String>>();
}