(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / PropertyC5.vb
blob111e72604276ece918f5d2ddc838053d7169bc0c
1 REM LineNo: 11
2 REM ExpectedError: BC30023
3 REM ErrorMessage: Properties declared 'WriteOnly' cannot have a 'Get'.
5 Imports system
7 Module M
8 private i as integer
10 public WriteOnly Property p() as Integer
11 GET
12 return i
13 END GET
15 SET (ByVal val as Integer)
16 i = val
17 End SET
18 End Property
20 Sub Main()
21 End Sub
23 End Module