Imported Upstream version 4.8.0.371

Former-commit-id: 1cedda3b6a8e480191a7a40a8dc33eb078fba58b
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2016-11-28 21:01:12 +00:00
parent 62edeef69b
commit 069517201b
48 changed files with 181 additions and 50 deletions

View File

@ -0,0 +1,15 @@
// Compiler options: -t:library
public class Foo<T>
{
public class Bar
{
public class FooBar : System.IEquatable<FooBar>
{
public bool Equals(FooBar a)
{
return true;
}
}
}
}

11
mcs/tests/gtest-641.cs Normal file
View File

@ -0,0 +1,11 @@
// Compiler options: -r:gtest-641-lib.dll
using System;
class SomeClass
{
public static void Main ()
{
IEquatable<Foo<int>.Bar.FooBar> a = new Foo<int>.Bar.FooBar ();
}
}