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
/
cs1503-13.cs
blob
22600207336d084df5f7f0d79ab90f54ec767173
1
// CS1503: Argument `#1' cannot convert `bool' expression to type `int'
2
// Line: 12
3
4
public class
C
5
{
6
static void
Foo
<
T
>(
T t
)
7
{
8
}
9
10
public static void
Main
()
11
{
12
Foo
<
int
> (
true
);
13
}
14
}