xref
: /
third_party
/
skia
/
resources
/
sksl
/
errors
/
SwitchDuplicateDefault.sksl
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
only in
/third_party/skia/resources/sksl/errors/
1
void main() {
2
switch (1) {
3
default:
4
default:
5
break;
6
}
7
}
8