Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-optional-35.cs
1 using System;
2 using System.Runtime.InteropServices;
3
4 public static class MainClass
5 {
6         public static void Main (string[] args)
7         {
8         }
9
10         public delegate Int32 FooDelegate ([In, Optional] int foo);
11 }