Brian Gideon
Brian Gideon

Reputation: 48959

Is this a bug or something I am doing wrong?

I cannot imagine how this is anything other than a bug, but since I do not currently have a login for the MS Connect website I will ask here first.

I have Visual Studio 2008 SP 1 with all post SP1 hotfixes I could find relating to the crash installed. Can you reproduce the following crash?

Friend MustInherit Class A

End Class

Friend MustInherit Class A(Of T)
    Inherits A

End Class
<Window x:Class="Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:WpfApplication1"
    Title="Window1" Height="300" Width="300">
    <Grid>
    </Grid>
</Window>

Edit: Microsoft has confirmed this bug. The issue still exists in VS2010 beta 2, but will be fixed in the next release.

Upvotes: 0

Views: 290

Answers (1)

Ryan Versaw
Ryan Versaw

Reputation: 6495

I was able to reproduce this by following your instructions, so I'd say a bug exists.

More information on my setup:

  • Windows 7 Ultimate
  • Visual Studio Team System 2008 (Version 9.0.30729.1 SP)

I wasn't able to reproduce this using C#, only VB.NET.

Upvotes: 1

Related Questions