Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

27 lines
351 B
C#

using System;
class AAttribute : Attribute
{
public string Value;
public AAttribute (string s)
{
Value = s;
}
}
[A (value)]
class MainClass
{
const string value = null;
public static int Main ()
{
var attr = typeof (MainClass).GetCustomAttributes (false) [0] as AAttribute;
if (attr.Value != null)
return 1;
return 0;
}
}