1 use std::time::Duration;
2 
main()3 fn main() {
4     std::thread::sleep(Duration::from_nanos(u64::MAX));
5 }
6