(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / AccessibilityC22.vb
blobc556fc551a4df01a1bd0c2271124d549ad193138
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 Protected d As Integer
8 End Class
9 Module Accessibility
10 Sub Main()
11 End Sub
12 End Module