[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-exmethod-25-lib.cs
1 // Compiler options: -target:library
2
3 using System.Runtime.CompilerServices;
4
5 [assembly:InternalsVisibleTo ("gtest-exmethod-25")]
6
7 namespace lib1
8 {
9         static class Foo
10         {
11                 internal static void Extend (this string aString)
12                 {
13                 }
14         }
15 }