Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / tests / bug-382986-lib.cs
1 using System;
2
3 namespace Repro {
4         public class Base {
5                 internal protected virtual int Test () {
6                         return 1;
7                 }
8         }
9
10         public class Generic<T> where T : Base {
11                 public int Run (T t) {
12                         return t.Test ();
13                 }
14         }
15 }