15 lines
351 B
C#
15 lines
351 B
C#
|
// CS0617: `Foo' is not a valid named attribute argument. Named attribute arguments must be fields which are not readonly, static, const or read-write properties which are public and not static
|
||
|
// Line: 11
|
||
|
|
||
|
using System;
|
||
|
|
||
|
public sealed class FooAttribute : Attribute
|
||
|
{
|
||
|
public short Foo { get; private set; }
|
||
|
}
|
||
|
|
||
|
[Foo (Foo = 1)]
|
||
|
public class Tests
|
||
|
{
|
||
|
}
|