Moved test to ui

This commit is contained in:
varkor 2018-03-21 21:00:38 +00:00
parent 4b673249f8
commit 3272b63f34
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
error[E0434]: can't capture dynamic environment in a fn item
--> $DIR/type-dependent-def-issue-49241.rs:13:22
|
LL | const l: usize = v.count(); //~ ERROR can't capture dynamic environment in a fn item
| ^
|
= help: use the `|| { ... }` closure form instead
error[E0080]: constant evaluation error
--> $DIR/type-dependent-def-issue-49241.rs:14:18
|
LL | let s: [u32; l] = v.into_iter().collect(); //~ ERROR constant evaluation error
| ^ encountered constants with type errors, stopping evaluation
error: aborting due to 2 previous errors
Some errors occurred: E0080, E0434.
For more information about an error, try `rustc --explain E0080`.