Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / errors / cs0155-5.cs
1 // CS0155: The type caught or thrown must be derived from System.Exception
2 // Line: 9
3
4 class X
5 {
6     public int Test () => throw "";
7 }