9 lines
176 B
Rust
9 lines
176 B
Rust
![]() |
//! @brief Example Rust-based BPF program that panics
|
||
|
|
||
|
extern crate solana_sdk_bpf_utils;
|
||
|
|
||
|
#[no_mangle]
|
||
|
pub extern "C" fn entrypoint(_input: *mut u8) -> bool {
|
||
|
panic!();
|
||
|
}
|