(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / StructureC5.vb
blob6530cfae6b529d5a15929b0316f24db60c34edaf
1 REM LineNo: 7
2 REM ExpectedError: BC31067
3 REM ErrorMessage: Method in a structure cannot be declared 'Protected' or 'Protected Friend'.
5 Structure S
6 Dim a As String
7 protected sub f(l as long)
8 end sub
9 End Structure
11 Module M
12 Sub Main()
13 dim x as S
14 End Sub
15 End Module