OS: Windows 10 64bit
Studio Version: Version 0.714.0.7141089 (64bit)
When I reference a declared type from a type function code, they are simply all nil.
type DeclaredType = number
type function Fn(): type
print(DeclaredType)
return DeclaredType
end
type Result = Fn<> -- prints 'nil'
Expected behavior
They shouldn’t be referenced as nil and they used to work well before.
