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
Make csproj target work again
[mcs.git]
/
errors
/
cs0631-3.cs
blob
ee62ca659e3b2c1085696e4a34806f8ca7a38a5d
1
// CS0631: The parameter modifier `ref' is not valid in this context
2
// Line: 5
3
4
class
X
{
5
public static
X
operator
< (
ref
X a
,
int
b
)
6
{
7
return null
;
8
}
9
}