Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-199.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cbe8ee7cb48da64ad094b7e71a8ebb4d3c545428 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Compiler options: /unsafe

// similar code from #75772.
public class Splay<T>
{
  unsafe private struct Node
  {
    private int* foo;
    private T                 data;
  } 
}

class Foo 
{
  public static void Main () {}
}