diff options
Diffstat (limited to 'tests/ui/const-generics/late-bound-vars/late-bound-in-where-issue-83993.rs')
-rw-r--r-- | tests/ui/const-generics/late-bound-vars/late-bound-in-where-issue-83993.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/const-generics/late-bound-vars/late-bound-in-where-issue-83993.rs b/tests/ui/const-generics/late-bound-vars/late-bound-in-where-issue-83993.rs new file mode 100644 index 000000000..89f01748f --- /dev/null +++ b/tests/ui/const-generics/late-bound-vars/late-bound-in-where-issue-83993.rs @@ -0,0 +1,15 @@ +// known-bug: unknown +// see comment on `tests/ui/const-generics/late-bound-vars/simple.rs` + +#![feature(generic_const_exprs)] +#![allow(incomplete_features)] + +fn bug<'a>() +where + for<'b> [(); { + let x: &'b (); + 0 + }]: +{} + +fn main() {} |