Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

37 lines
515 B
C#

using System;
struct Foo<T>
{
public T Data;
public Foo (T data)
{
this.Data = data;
}
}
class Test<T>
{
public Foo<T> GetFoo (T data)
{
return new Foo<T> (data);
}
}
class X
{
public static int Main ()
{
Test<long> test = new Test<long> ();
Foo<long> foo = test.GetFoo (0x800);
//
// This is a very simple test, just make sure the struct
// is returned correctly. This was broken until recently
// and I just fixed it on amd64.
if (foo.Data != 0x800)
return 1;
return 0;
}
}