Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-exmethod-26-lib.cs
1 // Compiler options: -target:library
2
3 using System;
4
5 namespace Test2
6 {
7         static class Extensions {
8                 public static bool IsNullable (this Type self)
9                 {
10                         return true;
11                 }
12         }
13 }