Useful macro to assert that a certain symbol exists in the source code. This is useful to strictly couple otherwise loosely coupled functions and symbols that depend on each other.
/// Statically checks if the argument is a valid symbol.
////// Symbols may be deleted in the code. This macro assures that no function is invalidated because of that.
#[macro_export]macro_rules!assert_exists{($x:expr)=>{#[allow(path_statements)]const_:()={$x;};};}