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
2009-11-12 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1670-2.cs
blob
96af0cfd52cd37b3d42e305292235ec90686feff
1
// CS1670: The `params' modifier is not allowed in current context
2
// Line: 6
3
4
class
C
5
{
6
public static explicit operator
X
(
params
C
[]
foo
)
7
{
8
return null
;
9
}
10
}