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