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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs1948-2.cs
blob
5895fecfc74d06a29c4f9972434802aba24c33d5
1
// CS1948: A range variable `T' conflicts with a method type parameter
2
// Line: 13
3
4
using
System
;
5
using
System
.
Linq
;
6
7
class
C
8
{
9
public static void
Foo
<
T
> ()
10
{
11
var
s
=
"0"
;
12
var
e
=
from
T
in
"a"
13
select
T
+
s
;
14
}
15
}