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
Merge pull request #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
errors
/
cs0308-2.cs
blob
2979fcfba9154873ff73b43426d1b499334bc6e4
1
// CS0308: The non-generic type `NamingContext' cannot be used with the type arguments
2
// Line: 6
3
4
class
Program
5
{
6
static
NamingContext
<
int
>
Lookup
()
7
{
8
return null
;
9
}
10
}
11
12
class
NamingContext
13
{
14
}