diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-09-04 19:53:01 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-09-04 20:25:22 +0200 |
| commit | 622a1ffd7236529d9774498742810ce1102b009f (patch) | |
| tree | 10bfbb6ce12f10babff8581a34a0581bd5d0bb4a /pkg/compiler/testdata | |
| parent | 291192c61b4d6bad6c11e8732be7de26f1add0ef (diff) | |
pkg/compiler: prohibit bitfields of size 0
They don't work the way C bitfields work.
So this will lead to confusion at least.
Diffstat (limited to 'pkg/compiler/testdata')
| -rw-r--r-- | pkg/compiler/testdata/errors.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/compiler/testdata/errors.txt b/pkg/compiler/testdata/errors.txt index 512d615c8..c339dcb80 100644 --- a/pkg/compiler/testdata/errors.txt +++ b/pkg/compiler/testdata/errors.txt @@ -128,7 +128,7 @@ resource inout[int32] ### resource uses reserved name inout bar() s3 { - f1 int8:0 + f1 int8:0 ### bitfields of size 0 are not supported f2 int8:1 f3 int8:7 f4 int8:8 |
