1 2 3 4 5 6 7 8 9 10 11 12
//! Ensure that the macros generate compilable code. use concordium_contracts_common::*; use concordium_std_derive::*; const ACC: AccountAddress = account_address_env!("TEST"); fn f() { println!("{:?}", ACC.to_string()); } fn main() {}