v/vlib/v/tests/attribute_test.v

50 lines
525 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
}
[attrone; attrtwo]
pub enum EnumMultiAttrTest {
one
two
}
[testing]
fn test_fn_attribute() {
assert true
}
[testing]
pub fn test_pub_fn_attribute() {
assert true
}
[attrone; attrtwo]
fn test_fn_multi_attribute() {
assert true
}
[attrone; attrtwo]
fn test_fn_multi_attribute_single() {
assert true
}