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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0080.cs
blob
fe3d82c8e7bfc37d58c3b6c0bfae7736787effa9
1
// CS0080: Constraints are not allowed on non-generic declarations
2
// Line: 5
3
4
using
System
.
Collections
;
5
class
Dingus where T
:
IEnumerable
{
6
}
7
8
class
D
{
9
static void
Main
()
10
{
11
}
12
}