weak_initializer.gd 89 B

12345
  1. func test():
  2. var bar = 1
  3. var foo: float = bar
  4. print(typeof(foo))
  5. print(foo is float)