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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0111-3.cs
blob
98e80033a5ad82cc10fe2c805b9dca6600808b4d
1
// CS0111:
2
// Line: 8
3
4
using
System
;
5
6
class
Test
{}
7
8
namespace
Test
9
{
10
public class
Foo
11
{
12
public static void
Main
()
13
{
14
Test t
=
new
Test
();
15
}
16
}
17
}