a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
16 lines
213 B
C#
16 lines
213 B
C#
// CS0266: Cannot implicitly convert type `int?' to `E'. An explicit conversion exists (are you missing a cast?)
|
|
// Line: 13
|
|
|
|
enum E
|
|
{
|
|
}
|
|
|
|
class C
|
|
{
|
|
public static void Main ()
|
|
{
|
|
E e = 0;
|
|
E r = e - null;
|
|
}
|
|
}
|