Custom Query (162 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (61 - 63 of 162)

Ticket Resolution Summary Owner Reporter
#134 fixed 存在しないジェネリクス型の指定でコンパイラが強制終了する。 dai イグトランス (egtra)
Description

次のコードをコンパイルすると、「StringToType内のジェネリクスクラス取得部分でpGenericClassがNULL」という内容のメッセージボックスが表示された後、Visual C++ Runtime Errorのメッセージボックスが表示され、コンパイラが強制終了させられる。

Dim x = New Lis<Long>

ここはユーザフレンドリに、強制終了することなくコンパイラエラーとしてほしい。

#133 fixed ProtectedメソッドでSuperが使用できない dai イグトランス (egtra)
Description

次のコードのSuper.doHoge()の行で「Protectedメンバ関数 "doHoge" を呼び出すことはできません」というエラーになってしまいます。

#console

Class Base
Public
	Sub Hoge()
		doHoge()
	End Sub
Protected
	Virtual Sub doHoge()
		Print "Base.Proc"
	End Sub
End Class

Class Derived
	Inherits Base
Protected
	Override Sub doHoge()
		Print "Derived.Proc"
		Super.doHoge()
	End Sub
End Class

Dim d = New Derived
d.Hoge()

Sleep(-1)
#132 fixed メソッド内でジェネリックなクラスが定義できない dai OverTaker
Description

"StringToType内のジェネリクスクラス取得部分でpGenericClassがNULL"というエラーが発生する

Imports System.Collections.Generic

Class MyClass
Public
	Function Method() As Long
		Dim list As List<Object>
	End Function
End Class

同じファイルにListを定義すれば問題ないことから、ライブラリからリンクしているものが発生する模様。

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.