mirror of
https://github.com/github/codeql.git
synced 2026-04-20 14:34:04 +02:00
21 lines
312 B
C#
21 lines
312 B
C#
using System;
|
|
|
|
public class B : A<int>
|
|
{
|
|
public override int Prop => 0;
|
|
|
|
public override int this[int i]
|
|
{
|
|
get { return 0; }
|
|
set { }
|
|
}
|
|
|
|
public override event EventHandler Event
|
|
{
|
|
add { }
|
|
remove { }
|
|
}
|
|
|
|
public override object ToObject(int t) => t;
|
|
}
|