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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs1673.cs
blob
b32861056352fe617074b8464b57d807cf43d13f
1
// CS1673: Anonymous methods inside structs cannot access instance members of `this'. Consider copying `this' to a local variable outside the anonymous method and using the local instead
2
// Line:
3
using
System
;
4
5
struct
S
{
6
delegate void
T
();
7
8
int
f
;
9
10
public int
Test
()
11
{
12
T t
=
delegate
{
13
f
=
1
;
14
};
15
return
0
;
16
}
17
18
static void
Main
()
19
{
20
}
21
}
22
23