blob: fecca3032f8056e4012554309fa9e6ab07751548 [file] [log] [blame] [edit]
// Part of the Crubit project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
use example_lib::foo::Bar;
fn main() {
unsafe {
let mut x = Bar { x: 1 };
Bar::MyMethod(&mut x as *mut Bar);
}
}