about summary refs log tree commit diff
path: root/tests/ui/traits/next-solver/no-param-env-const-fold.rs
blob: 4f47332dd23aecb88e38c5795534ed332a37821a (plain)
1
2
3
4
5
6
7
8
9
10
//@ check-pass
//@ compile-flags: -Znext-solver

// Regression test for <https://github.com/rust-lang/trait-system-refactor-initiative/issues/213>.

use std::ops::Deref;

trait Trait: Deref<Target = [u8; { 1 + 1 }]> {}

fn main() {}