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
/
cs1929.cs
blob
4679492a1fe59334fbf36671d34b2d0d0ca6aa02
1
// CS1929: Type `int' does not contain a member `Check' and the best extension method overload `C.Check(this string)' requires an instance of type `string'
2
// Line: 12
3
4
static class
C
5
{
6
public static void
Check
(
this string
s
)
7
{
8
}
9
10
static void
Main
()
11
{
12
1
.
Check
();
13
}
14
}