summaryrefslogtreecommitdiff
path: root/tests/bad_octal.qmi
blob: df3a826fab2b6da73c6a6dc14d3af982f226fb55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package test;

struct qmi_result {
	u16 result;
	u16 error;
};

request test_request {
	# Note that '8' is not a valid octal digit
	optional u32 foo = 028;
} = 0x23;

response test_response {
	required qmi_result r = 2;
} = 043;

indication test_indication {
	optional u64 value = 0x99;
} = 0x7;