提交 78498d0d 编写于 作者: L LeSeulArtichaut

Add regression test for #80062

上级 d107a87d
// Regression test for issue #80062 (fixed by `min_const_generics`)
fn sof<T>() -> T { unimplemented!() }
fn test<T>() {
let _: [u8; sof::<T>()];
//~^ ERROR generic parameters may not be used in const operations
}
fn main() {}
error: generic parameters may not be used in const operations
--> $DIR/issue-80062.rs:6:23
|
LL | let _: [u8; sof::<T>()];
| ^ cannot perform const operation using `T`
|
= note: type parameters may not be used in const expressions
= help: use `#![feature(const_generics)]` and `#![feature(const_evaluatable_checked)]` to allow generic const expressions
error: aborting due to previous error
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册