Replies: 1 comment
-
See: #7913 For a |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
foreach (var n in [1,2,3])
rightfully throwserror CS9176: There is no target type for the collection expression.
and expects(int[])
cast.compiler should at least be able to deduce int[] implicitly when type is specified
foreach (int n in [1,2,3])
?Beta Was this translation helpful? Give feedback.
All reactions