2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-450.cs
blob137e4a49298d4db80fc631f1e319d49d279b03ce
1 //
2 // This is a test for as expression
3 // in custom attribute constructors
4 //
6 using System;
8 class MyAttribute : Attribute {
10 public MyAttribute (string s)
15 [My (null as string)]
16 class X {
18 static void Main ()