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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0631-3.cs
blob
2e88bb47ff41af53d090fe06ee92a3a9d8338a42
1
// CS0631: The modifiers `ref' and `out' are 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
}