mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
12 lines
147 B
C#
12 lines
147 B
C#
class Bad
|
|
{
|
|
class Super {}
|
|
class Sub : Super {}
|
|
|
|
void M()
|
|
{
|
|
var sub = new Sub();
|
|
Super super = (Super)sub;
|
|
}
|
|
}
|