mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
33 lines
324 B
V
33 lines
324 B
V
[testing]
|
|
struct StructAttrTest {
|
|
foo string
|
|
bar int
|
|
}
|
|
|
|
[testing]
|
|
pub struct PubStructAttrTest {
|
|
foo string
|
|
bar int
|
|
}
|
|
|
|
[testing]
|
|
enum EnumAttrTest {
|
|
one
|
|
two
|
|
}
|
|
|
|
[testing]
|
|
pub enum PubEnumAttrTest {
|
|
one
|
|
two
|
|
}
|
|
|
|
[testing]
|
|
fn test_fn_attribute() {
|
|
assert true
|
|
}
|
|
|
|
[testing]
|
|
pub fn test_pub_fn_attribute() {
|
|
assert true
|
|
} |