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
Warnings cleanup
[mcs.git]
/
errors
/
gcs1929.cs
blob
6358f368f434bdce6108107f107379cfe9795aa8
1
// CS1929: Extension method instance type `int' cannot be converted to `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
}