Priority
Normal
Type
Bug 
State
Fixed 
Assignee
Alexander Zverev 
Subsystem
No subsystem 
Affected versions
Fixed in
Fixed in build
5.0.1612.107  
Build
739
Fixed in build
900
  • Submitted by   Vladimir Reshetnikov
    23 months ago (06 Mar 2008 17:51)
  • Updated by Vladimir Reshetnikov
    20 months ago (04 Jun 2008 20:51)
  • Jira: RSRP-60553
    (history, comments)

RSRP-60553

QF 'Make containing block unsafe' works wrong try/catch

0
class Program
{
    static void Main()
    {
        try
        {
        }
        catch
        {
            void* p;
        }
    }
}


After QF:

class Program
{
    static void Main()
    {
        try
        {
        }
        catch
            unsafe
            {
                void* p;
            }
    }
}


And no parser errors are reported.

Issue was closed
Comments (0)
 
History (0)
 
Links
 
Issue has no comments