' Minimal example

type ttest

  myvar as Single
  myvar2 as single
  
  function _Create()
  	MsgBox 0, str$(assign(1.5, me.myvar)) ' error
  	'me.myvar2 = assign(2.5, me.myvar) ' error
  End Function

End Type

dim testVar as ttest
unless I'm mistaken this is not reported in the list of known issues, so

who can confirm this code is correct ?