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
2009-10-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
gtest-293.cs
blob
1bb7fc8303e03eb6a84aa589b05405cffb30eb8a
1
using
System
;
2
using
System
.
Collections
.
Generic
;
3
4
public class
Test
<
T
>
5
{
6
public void
Invalid
(
T item
)
7
{
8
Other
(
new
T
[]
{item}
);
9
}
10
11
public void
Other
(
IEnumerable
<
T
>
collection
)
12
{
13
}
14
}
15
16
class
X
17
{
18
static void
Main
()
19
{ }
20
}