http://bugs.winehq.org/show_bug.cgi?id=58248 --- Comment #5 from francisdb <francisdb@gmail.com> --- Add this to lang.vbs to test ' Me(idx) should parse as accessing the default property of Me ' https://bugs.winehq.org/show_bug.cgi?id=58248 Class TestMeIndex Private arr_(1) Public Default Property Get Item(idx) Item = arr_(idx) End Property Public Sub SetVal(idx, val) arr_(idx) = val End Sub Public Sub TestAccess() SetVal 0, "hello" Call ok(Me(0) = "hello", "Me(0) = " & Me(0)) End Sub End Class Set obj = New TestMeIndex Call obj.TestAccess() -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.