// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
pubstructBar{x:u8,
y:u16,
}implAsRef<u8>forBar{fnas_ref(&self)->&u8{&self.x }}implAsRef<u16>forBar{fnas_ref(&self)->&u16{&self.y }}#[fundle::bundle]structFoo{#[forward(u8, u16)]x: Bar
}fnmain(){}