new test
authorMarek Safar <marek.safar@gmail.com>
Wed, 30 Nov 2005 15:56:09 +0000 (15:56 -0000)
committerMarek Safar <marek.safar@gmail.com>
Wed, 30 Nov 2005 15:56:09 +0000 (15:56 -0000)
svn path=/trunk/mcs/; revision=53695

mcs/errors/cs0117-5.cs [new file with mode: 0644]
mcs/errors/known-issues-gmcs

diff --git a/mcs/errors/cs0117-5.cs b/mcs/errors/cs0117-5.cs
new file mode 100644 (file)
index 0000000..c7955ab
--- /dev/null
@@ -0,0 +1,14 @@
+// cs0117-5.cs: `System.Reflection.BindingFlags' does not contain a definition for `Private'
+// Line: 8
+
+using System;
+using System.Reflection;
+
+public class Test {
+       const BindingFlags Def = BindingFlags.Private | BindingFlags.Static;
+       const BindingFlags SetBindingFlags = Def | BindingFlags.SetProperty;
+
+       static void Main ()
+       {
+       }
+}
index 108f29906cb4013f9820fc6c49c53c5f17c637f3..917ba3f198df7a68527cff4694001b5fea780661 100644 (file)
@@ -11,6 +11,7 @@
 # csXXXX.cs NO ERROR   : error test case doesn't report any error. An exception is considered
 #                        as NO ERROR and CS5001 is automatically ignored.
 
+cs0117-5.cs NO ERROR
 cs0229-2.cs
 cs0229.cs NO ERROR
 cs0231-2.cs