mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-04 11:15:46 +00:00
Some now pass, some still fail. If we fix bugs and they begin to pass, we have a better chance of noticing and marking the issues as fixed. Change-Id: I7278f960967a570ccde8865dcf2aa580235559bf Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/54062 Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: David Neto <dneto@google.com>
19 lines
572 B
Plaintext
19 lines
572 B
Plaintext
SKIP: FAILED
|
|
|
|
|
|
|
|
Validation Failure:
|
|
|
|
Compilation failed:
|
|
|
|
program_source:16:24: error: default initialization of an object of const type 'device uint *const' (aka 'device unsigned int *const')
|
|
device uint* const p;
|
|
^
|
|
= nullptr
|
|
program_source:27:9: error: cannot assign to variable 'p' with const-qualified type 'device uint *const' (aka 'device unsigned int *const')
|
|
p = &(b.data.array[i]);
|
|
~ ^
|
|
program_source:16:24: note: variable 'p' declared const here
|
|
device uint* const p;
|
|
~~~~~~~~~~~~~~~~~~~^
|