In GDScript you can store a native type into a variable, but you cannot do much with it afterwards. You can only create an instance via `.new()`.
This is because you are not storing a type reference, but rather a special GDScript object, GDScriptNativeClass, and general Object or ClassDB API doesn't accept it as input in any way.
Would at least be nice to get the class name from the GDScriptNativeClass object directly, without instantiating first. It exists as a String member, but not exposed.
