/ tests / tests / compiler / structs / inline_fail.adl
inline_fail.adl
 1  
 2  program test.alpha {
 3      struct Foo {
 4          x: u32,
 5      }
 6  
 7      function main(zz: bool) {
 8          // no member y in Foo
 9          let a: Foo = Foo { y: 0u32 };
10      }
11  }