BOO-999
[boo.git] / tests / testcases / errors / BCE0154-1.boo
bloba57253a366c6d0844589181697f9d8dbb82ef921
1 """
2 BCE0154-1.boo(11,2): BCE0154: 'System.Runtime.InteropServices.ComVisibleAttribute' cannot be applied multiple times on the same target.
3 BCE0154-1.boo(12,2): BCE0154: 'System.Runtime.InteropServices.ComVisibleAttribute' cannot be applied multiple times on the same target.
4 """
6 [System.Diagnostics.Conditional("test no false error on multiple usage")]
7 [System.Diagnostics.Conditional("test no false error on multiple usage")]
8 def TestMultipleUsageGood():
9 pass
11 [System.Runtime.InteropServices.ComVisible(true)]
12 [System.Runtime.InteropServices.ComVisible(false)]
13 def TestMultipleUsageBad():
14 pass