(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / AccessibilityC2.vb
blob5afd20447d9594d19d24de90331b697ae19ed477
1 REM LineNo: 7
2 REM ExpectedError: BC30176
3 REM ErrorMessage: Only one of 'Public', 'Private', 'Protected', 'Friend', or 'Protected Friend' can be specified.
5 Imports System
6 Class C1
7 Private Friend e As Integer
8 End Class
9 Module Accessibility
10 Sub Main()
11 End Sub
12 End Module