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
/
cs0262.cs
blob
7d2751fe0a118ff276dc524919e6f4bd66901d3f
1
// cs0262.cs: Partial declarations of `Foo' have conflicting accessibility modifiers
2
// Line: 6
3
public partial class
Foo
4
{ }
5
6
internal partial class
Foo
7
{ }
8
9
class
X
10
{
11
static void
Main
()
12
{ }
13
}