**** Merged from MCS ****
[mono-project.git] / mcs / mbas / Test / errors / AttributesC7.vb
blob85e0b02ec117049ab97d84f7525a17ebc0a8f455
1 REM LineNo: 7
2 REM ExpectedError: BC32035
3 REM ErrorMessage: Attribute specifier is not a complete statement. Use a line continuation to apply the attribute to the following statement.
5 Imports System
7 <AttributeUsage(AttributeTargets.All)>
8 Public Class AuthorAttribute
9 Inherits Attribute
10 Public Name
11 Public Sub New(ByVal Name As String)
12 Me.Name=Name
13 End Sub
14 End Class
16 Module Test
17 Sub Main()
18 End Sub
19 End Module