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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0122-4.cs
blob
f545a99a2ebda858c9eda2089ea12178681babd5
1
// CS0122: `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
}