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
/
gcs0402-2.cs
blob
3df4df73f5ca616e885135bd438c2f7caa60d4a3
1
// gcs0402-2.cs: `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
}