repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-06-26 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0815-2.cs
blob
25e5bbe0d6be8422f315eb6ed639d2d9e2dff792
1
// CS0815: An implicitly typed local variable declaration cannot be initialized with `void'
2
// Line: 9
3
4
5
public class
Test
6
{
7
static void
Main
()
8
{
9
var
v
=
Foo
();
10
}
11
12
static void
Foo
()
13
{
14
}
15
}
16