Currently dynamic lazy fields are attempted to be constructed in the primary constructor: ```swift class A { // Should work lazy let a = A() } func main() { let x = A().a // Should work } ```