(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / tests / test-256.cs
blob5d6d063ee619f95a17cc305c27858fab7524a896
1 using System;
3 [AttributeUsage( AttributeTargets.Property, AllowMultiple=false,
4 Inherited=true )]
5 public class TableColumn : Attribute
7 public object MagicValue
9 get { return null; }
10 set { }
13 public object Value2;
16 class Bug
18 [TableColumn(MagicValue=2,Value2=0)]
19 public int TInt
21 get { return 0; }
24 public static void Main ()
26 const object o = 1;