If you can't instantiate it, you can't get the value of one of its fields.
In fact, when you think about it, this is totally nonsensical. The value of the field (i.e. the object reference to a specific Bar object) does not exist until the Bar object has been created. And that only happens when the Foo object is instantiated.
This would make more sense if field was initialized to a Java constant expression, but you can't do that with a reference type (apart from String).
The only possible wiggle room here is that you might be able to instantiate the Foo object indirectly or by using reflection and setAccessible to break the Java visibility restrictions. But even then, you are getting the field value of a specific Foo object that you have instantiated ... not the (nonsensical) field value of an object that doesn't exist yet.