**** Merged from MCS ****
[mono-project.git] / mcs / btests / AccessibilityC7.vb
blobe25c2da4af0c8922817344609c5a5817f0dafc83
1 REM LineNo: 16
2 REM ExpectedError: BC30390
3 REM ErrorMessage: 'C1.a' is not accessible in this context because it is 'Private'.
5 Imports System 'Should generate five compilation errors
6 Class C1
7 Private a As Integer=10
8 Protected b As Integer=30
9 Private Sub S()
10 End Sub
11 End Class
13 Class C2
14 Inherits C1
15 Public Sub S1()
16 Console.WriteLine (a)
17 End Sub
18 End Class