test-token/teto_macros/tests/basic.rs
2024-08-31 11:30:32 -07:00

15 lines
255 B
Rust

use teto::TestToken;
#[teto::test]
fn basic_test(_token: TestToken) {}
#[teto::test]
pub(self) fn test_with_visibility(t: TestToken) {
assert_eq!(t, t);
}
#[teto::test]
const fn const_test(_: TestToken) {}
#[teto::test]
const fn no_token_arg() {}