Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-optional-30-lib.cs
1 // Compiler options: -t:library
2
3 public static class Lib
4 {
5         public static T Foo<T> (T x = default (T))
6         {
7                 return x;
8         }
9 }