a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
24 lines
361 B
C#
24 lines
361 B
C#
// This code must be compilable without any warning
|
|
// Compiler options: -warnaserror -warn:4
|
|
|
|
using System;
|
|
|
|
public class A {
|
|
[Obsolete()]
|
|
public virtual string Warning {
|
|
get { return ""; }
|
|
}
|
|
}
|
|
|
|
public class B : A {
|
|
[Obsolete()]
|
|
public override string Warning {
|
|
get { return ""; }
|
|
}
|
|
|
|
public static void Main ()
|
|
{
|
|
}
|
|
}
|
|
|