Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-534-lib.cs
1 // Compiler options: -t:library
2
3 public interface IG<T>
4 {
5 }
6
7 public interface IA
8 {
9         void Method (IG<double[][]> arg);
10 }