Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2010-04-12 21:28:04 +0400
committerMarek Safar <marek.safar@gmail.com>2010-04-12 21:28:04 +0400
commit917c9adf73d864db6eaa97f796b3acc04c92c807 (patch)
treef262c427ddaac14b5a59dc0ca03dca6ffeba7903 /mcs/tests/test-450.cs
parent673e10017b108447496492954b7d02e04fdca2e8 (diff)
It should not compile.
svn path=/trunk/mcs/; revision=155254
Diffstat (limited to 'mcs/tests/test-450.cs')
-rw-r--r--mcs/tests/test-450.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/mcs/tests/test-450.cs b/mcs/tests/test-450.cs
deleted file mode 100644
index 137e4a49298..00000000000
--- a/mcs/tests/test-450.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-//
-// This is a test for as expression
-// in custom attribute constructors
-//
-
-using System;
-
-class MyAttribute : Attribute {
-
- public MyAttribute (string s)
- {
- }
-}
-
-[My (null as string)]
-class X {
-
- static void Main ()
- {
- }
-}