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
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
tests
/
gtest-exmethod-44.cs
blob
3586a730934441012fff166b70395949b3db5331
1
// Compiler options: -warnaserror
2
3
using
System
;
4
using
System
.
Linq
;
5
6
namespace
UnusedFieldWarningTest2
7
{
8
class
Repro
9
{
10
int
[]
a
=
new int
[]
{ 1 }
;
11
12
void
Foo
()
13
{
14
Console
.
Write
(
a
.
FirstOrDefault
());
15
}
16
17
public static void
Main
()
18
{
19
}
20
}
21
}