summaryrefslogtreecommitdiff
path: root/tests/src/Loader/classloader/v1/Beta1/Layout/Matrix/cs/L-2-9-3.cs
blob: 4dd25c082a3ac2b20410c6a6c4eb3d9955a82ef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

//////////////////////////////////////////////////////////
// L-1-9-1.cs - Beta1 Layout Test - RDawson
//
// Tests layout of classes using 1-deep implementation in
// the same assembly and module
//
// See ReadMe.txt in the same project as this source for
// further details about these tests.
//

//@csharp C# doesn't allow much flexibility here in terms of negative testing on interfaces...
//THIS NEEDS MORE COVERAGE

using System;

class Test{
public static int Main(){
  int mi_RetCode;
  B b = new B();
  mi_RetCode = b.Test();

  if(mi_RetCode == 100)
    Console.WriteLine("Pass");
  else
    Console.WriteLine("FAIL");

  return mi_RetCode;
}
}

struct B : A{
public int MethPubInst(){
  Console.WriteLine("B::MethPubInst()");
  return 100;
}

public int Test(){
  int mi_RetCode = 100;

  /////////////////////////////////
  // Test instance method access  
  if(MethPubInst() != 100)
    mi_RetCode = 0;

  return mi_RetCode;
}
}