DEBSOURCES
Skip Quicknav
sources / mono / 6.8.0.105%2Bdfsg-3.3 / mcs / errors / cs0157.cs
123456789101112
// CS0157: Control cannot leave the body of a finally clause // Line: 9 class X { void A () { try { } finally { return; } } }