oli-obk / ui_test

A test framework for testing rustc diagnostics output
27 stars 25 forks source link

replace lazy_static with std's OnceLock #271

Closed klensy closed 2 months ago

klensy commented 2 months ago

OnceLock stable from 1.70, which is current msrv, so use it instead (lazy_static still in tree),

TODO (check if already done)

oli-obk commented 2 months ago

Cool thx!