[runtime] Cache marshal info in locals whenever possible.
[mono.git] / mcs / tools / linker / Tests / TestCases / Linker / MultipleReferences / Foo.cs
1 using System;
2
3 public class Foo {
4
5         public Bar b;
6
7         public Foo (Bar b)
8         {
9                 this.b = b;
10         }
11
12         public void UseBar ()
13         {
14                 b.Bang ();
15         }
16
17         [NotLinked] public void Blam ()
18         {
19         }
20 }