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-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0122-2.cs
blob
0f545622818805042ca9bfd8a76dc1675a8dbcaf
1
// CS0122: `Test<A>' is inaccessible due to its protection level
2
// Line: 8
3
// Compiler options: -r:GCS0122-2-lib.dll
4
5
class
X
6
{
7
static void
Main
()
8
{
9
Test
<
float
>
test
=
new
Test
<
float
> ();
10
}
11
}
12