Skip to content

Commit

Permalink
Moved test to ui
Browse files Browse the repository at this point in the history
  • Loading branch information
varkor committed Mar 21, 2018
1 parent 4b67324 commit 3272b63
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/test/ui/type-dependent-def-issue-49241.stderr
Original file line number Diff line number Diff line change
@@ -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`.

0 comments on commit 3272b63

Please sign in to comment.