repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0103-10.cs
blob
c73714e1c33e932fe6963ca6808d74e14fab03d0
1
// CS0103: The name `b' does not exist in the current context
2
// Line: 11
3
4
using
System
.
Linq
;
5
6
class
C
7
{
8
public static void
Main
()
9
{
10
var
e
=
from
a
in
"abcd"
11
join
b
in
"defg"
on b equals
"g"
12
select
a
;
13
}
14
}