You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fnemulate_foreign_item(){match link_name {// A comment here will duplicate the attribute#[rustfmt::skip]
| "pthread_mutexattr_init"
| "pthread_mutexattr_settype"
| "pthread_mutex_init"
=> {}}}
gets rustformatted to
fnemulate_foreign_item(){match link_name {// A comment here will duplicate the attribute#[rustfmt::skip]#[rustfmt::skip]
| "pthread_mutexattr_init"
| "pthread_mutexattr_settype"
| "pthread_mutex_init"
=> {}}}
if you continue rustfmting, the attributes get duplicated all the time, so you have exponential growth of attributes 😆
The text was updated successfully, but these errors were encountered:
gets rustformatted to
if you continue rustfmting, the attributes get duplicated all the time, so you have exponential growth of attributes 😆
The text was updated successfully, but these errors were encountered: