Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs1741-2.cs
1 // CS1741: Cannot specify a default value for the `out' parameter
2 // Line: 6
3
4 interface I
5 {
6         void Test (out bool a = true);
7 }
8