about summary refs log tree commit diff
path: root/tests/ui/rfcs/rfc-1937-termination-trait/termination-trait-for-exitcode.rs
blob: 836370329b653cf617e081911678f6cc74754776 (plain)
1
2
3
4
5
6
7
//@ run-pass

use std::process::ExitCode;

fn main() -> ExitCode {
    ExitCode::SUCCESS
}