[System] Tweak socket test
[mono-project.git] / mono / tests / bug-382986-lib.cs
blob96bc31626b5e3ec082b4dabf2799e79e5cd1dc3c
1 using System;
3 namespace Repro {
4 public class Base {
5 internal protected virtual int Test () {
6 return 1;
10 public class Generic<T> where T : Base {
11 public int Run (T t) {
12 return t.Test ();