﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
211	メンバ関数名とプロパティ名が同一のときに起こる不具合	OverTaker	dai	"メンバ関数名とプロパティ名を同一にしてgetterだけ宣言していると、メンバ変数に値が代入できなくなる。

{{{
#console

Dim c = New ClassA(20)
System.Console.WriteLine(c.Value)
System.Console.ReadLine()

Class ClassA
	Value As Long
Public
	Sub ClassA(v As Long)
		Value = v
	End Sub

	Function Value() As Long
		Return Value
	End Function
End Class
}}}
"	バグ	new	中-major	AB5 CP6	Compiler				
