Custom Query (162 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (79 - 81 of 162)

Ticket Owner Reporter Resolution Summary
#142 dai イグトランス (egtra) fixed 組込型とクラス型の衝突でコンパイラが落ちる
Description

次のようにSystem名前空間をインポートした状態で組込型とBlittable型が同名であるものを使用しようとすると、コンパイラが強制終了してしまう。

Imports System
Dim i = New Int64(-4294967296) 'System.Int64のつもりでうっかりと

Int64のほか、Single/Doubleでも発生。

少なくともコンパイラが強制終了しないようにするほか、これをどう解釈するか決める必要があるのではないか?例えば次のようにすることが考えられる。

  1. 組込型のInt64型と解釈する(そして組込型はNewできないのでエラー)
  2. 組込型のInt64型とSystem.Int64型とで名前が曖昧としてエラー
#143 dai OverTaker fixed 引数なしの例外でCatchが無限ループする
Description

なぜかCatch内が何度も実行されます。

Try
	proc()
Catch
	MessageBox(0, "catch", "title", MB_OK)
Finally
	MessageBox(0, "finally", "title", MB_OK)
End Try

Sub proc()
	Throw
End Sub
#148 dai dai fixed ListクラスにIEnumerableインターフェイスを実装する
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.