blob: ae8b1285786c7fb1f154ea173e2b510cd768314f (
plain)
1
2
3
4
5
6
7
|
// CS0109: The member `BaseClass.Val' does not hide an inherited member. The new keyword is not required
// Line: 6
// Compiler options: -warnaserror -warn:4
class BaseClass {
public new const bool Val = false;
}
|