Hello,
class A{
   int i = 42;
}
Is there a way to get that 42? (Input is the class A and the name 
of the field 'i')
A.i.init returns 0, so it doesn't care about the class.
classinfo.m_init can be an option, but maybe there's a nicer way 
to do this?
Thx!