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
/
cs0122-4.cs
blob
040d60d05b16481461756d3c4b7af17ef965af65
1
// cs0122-4.cs: `FooAttribute.Foo' is inaccessible due to its protection level
2
// Line: 11
3
// This is bug #55970
4
5
using
System
;
6
7
public sealed class
FooAttribute
:
Attribute
{
8
int
Foo
;
9
}
10
11
[
Foo
(
Foo
=
1
)]
12
public class
Tests
{
13
public static void
Main
() {
14
}
15
}