Sign in
foss-fpga-tools
/
third_party
/
verible
/
0ad00f0b2a11ef48b7dba9a85905e4f4e7a91c88
/
.
/
verilog
/
tools
/
lint
/
testdata
/
struct_name_style.sv
blob: 6d632bd41a989558a37c4bec4b74c08d82d83e11 [
file
] [
log
] [
blame
]
// Struct names should be lower_snake_case and end with '_t'
typedef
struct
packed
{
int
x
,
y
;
}
camelStruct
;