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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs0103-9.cs
blob
80ced48249fb2f6b5cca4c0ba1feacdca9007193
1
// CS0103: The name `a' 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
"a"
equals a
12
select
a
;
13
}
14
}