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

13 lines
138 B
Rust

#[teto::test]
struct S {}
#[teto::test]
enum E {}
#[teto::test]
const C: usize = 10;
#[teto::test]
static S: usize = 10;
fn main() {}