rust/tests/ui/const-generics/issues/auxiliary/const_generic_issues_lib.rs

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

16 lines
332 B
Rust
Raw Normal View History

#![feature(generic_const_exprs)]
#![allow(incomplete_features)]
2020-07-16 05:32:43 -05:00
// All of these three items must be in `lib2` to reproduce the error
pub trait TypeFn {
type Output;
}
pub struct GenericType<const B: i8>;
// Removing the braces around `42` resolves the crash
impl TypeFn for GenericType<{ 40 + 2 }> {
2020-07-16 05:32:43 -05:00
type Output = ();
}