Opened 16 years ago

Closed 16 years ago

#172 closed バグ(ケアレスミス) (fixed)

引数にあるジェネリックなコレクションを関数内でForeachすると、ジェネリックの型が指定されない

Reported by: OverTaker Owned by: dai
Priority: 中-major Milestone: AB5 CP6
Component: Compiler Version:
Keywords: Cc:

Description

「System.ObjectからSystem.Stringに変換できません」 とかエラーが出ます。

#console
Imports System.Collections.Generic
Imports System[]

fx( New List<String>)
Console.ReadLine()

Sub fx(strings As List<String>)
	Dim s As String
	Foreach s In strings
		Console.WriteLine(s)
	Next
End Sub

Change History (2)

comment:1 by dai, 16 years ago

Status: newassigned

報告された現象が確認できた。

comment:2 by dai, 16 years ago

Resolution: fixed
Status: assignedclosed

[529]にて修正。

Note: See TracTickets for help on using tickets.