a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
8 lines
191 B
C#
8 lines
191 B
C#
// CS0717: `System.Console' is not a valid constraint. Static classes cannot be used as constraints
|
|
// Line: 6
|
|
|
|
abstract class C
|
|
{
|
|
public abstract void Foo<U> () where U : System.Console;
|
|
}
|