blob: d91f91ee7ab68def3f08d7a9563e7c4c12d1fbf9 [file] [log] [blame]
// ignore-tidy-linelength
// ignore-windows
// ignore-macos
// compile-flags: -g -C no-prepopulate-passes
#![feature(start)]
// CHECK-LABEL: @main
// CHECK: {{.*}}DISubprogram{{.*}}name: "start",{{.*}}DIFlagMainSubprogram{{.*}}
#[start]
fn start(_: isize, _: *const *const u8) -> isize {
return 0;
}