Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
22
tests/ui/const-generics/dont-evaluate-array-len-on-err-1.rs
Normal file
22
tests/ui/const-generics/dont-evaluate-array-len-on-err-1.rs
Normal file
|
@ -0,0 +1,22 @@
|
|||
#![feature(generic_const_exprs)]
|
||||
#![allow(incomplete_features)]
|
||||
|
||||
// This tests that during error handling for the "trait not implemented" error
|
||||
// we dont try to evaluate std::mem::size_of::<Self::Assoc> causing an ICE
|
||||
|
||||
struct Adt;
|
||||
|
||||
trait Foo {
|
||||
type Assoc;
|
||||
fn foo()
|
||||
where
|
||||
[Adt; std::mem::size_of::<Self::Assoc>()]: ,
|
||||
{
|
||||
<[Adt; std::mem::size_of::<Self::Assoc>()] as Foo>::bar()
|
||||
//~^ Error: the trait bound
|
||||
}
|
||||
|
||||
fn bar() {}
|
||||
}
|
||||
|
||||
fn main() {}
|
Loading…
Add table
Add a link
Reference in a new issue