15 lines
215 B
C#
15 lines
215 B
C#
|
// Compiler options: -doc:xml-056.xml
|
||
|
|
||
|
using System;
|
||
|
|
||
|
/// <summary><see cref="AAttribute" /></summary>
|
||
|
[Obsolete("whatever", true)]
|
||
|
public class AAttribute : Attribute {
|
||
|
}
|
||
|
|
||
|
class Demo {
|
||
|
static void Main ()
|
||
|
{
|
||
|
}
|
||
|
}
|