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
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs0308-9.cs
blob
0c28abfd835af79667772a4d095fbb0d57ad2e30
1
// CS0308: The non-generic type `Test.NonGeneric' cannot be used with the type arguments
2
// Line: 8
3
4
public class
Test
5
{
6
public static void
Main
(
string
[]
args
)
7
{
8
NonGeneric dummy
=
new
NonGeneric
<
string
> ();
9
}
10
11
internal class
NonGeneric
12
{
13
}
14
}