blob: 607fe4b77d77e22008b5d68e9f48e217549f9011 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// CS0619-40: `C.ob' is obsolete: `ooo'
// Line: 13
using System;
class C
{
[Obsolete("ooo", true)]
const int ob = 4;
public void Test (int arg)
{
switch (arg) {
case ob: return;
}
}
}
|