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
Merge pull request #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs1108.cs
blob
ebef33cc813e94ae5d89abc33aa81ea87e410842
1
// CS1108: A parameter cannot have specified more than one modifier
2
// Line: 6
3
4
public class
C
5
{
6
public void
Foo
(
ref out int
)
7
{
8
}
9
}