Commit f4dfc5a
committed
Fix Issue1012 test: use untyped lambda parameter (Sub(i) not Sub(i As Integer))
Parameters with explicit types in lambda expressions produce typed C#
parameters like (int i) =>. Using Sub(i) without an As-clause produces
the simpler i => form, which is what the test intended to demonstrate.
https://claude.ai/code/session_01AkwUvu3XuCdj3D4axoX4UX1 parent 089612e commit f4dfc5a
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
47 | | - | |
| 47 | + | |
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
| |||
0 commit comments