d7cc093f1f
Constructors such as `float[2](0, 0)` add a type to the symbol table; this type needs to be copied into the new symbol table if the constructor is cloned by the inliner. Change-Id: Ifa8d2dec87103c6223ce493e2201a904c14c2137 Bug: oss-fuzz:28050 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/339168 Auto-Submit: John Stiles <johnstiles@google.com> Commit-Queue: Brian Osman <brianosman@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
5 lines
110 B
Plaintext
5 lines
110 B
Plaintext
float an() { return 2; }
|
|
void wna() { an(), float[](); }
|
|
void na() { wna(); }
|
|
void main() { na(), na(); }
|