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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0402-2.cs
blob
e51facfd1b1f8ab19627d857b78a39bb5c2cb84b
1
// CS0402: `C.Main<T,U>()': an entry point cannot be generic or in a generic type
2
// Line: 7
3
// Compiler options: -warnaserror -warn:4
4
5
class
C
6
{
7
public static void
Main
<
T
,
U
> ()
8
{
9
}
10
}