Update pipeline-netcore-runtime.yml
[mono-project.git] / mcs / tests / gtest-558.cs
blob3db576fde2d9d66047178a253a88be6e54182f23
1 using System;
3 abstract class A<T>
5 public abstract void Foo<U> (U arg) where U : T;
8 class B : A<int>
10 public override void Foo<U> (U arg)
12 ValueType vt = arg;
13 Next (arg);
16 void Next<UU> (UU a) where UU : struct
20 public static void Main ()
22 new B ().Foo (5);