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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs1948.cs
blob
07d503d411e2e567fc35c7af4a0ad4dbb0ff91d5
1
// CS1948: A range variable `T' conflicts with a method type parameter
2
// Line: 12
3
4
5
using
System
;
6
using
System
.
Linq
;
7
8
class
C
9
{
10
public static void
Foo
<
T
> ()
11
{
12
var
e
=
from
T
in
"a"
13
select
T
;
14
}
15
}