- Notifications
You must be signed in to change notification settings - Fork 15.3k
Open
Labels
Description
| Bugzilla Link | 31793 |
| Version | unspecified |
| OS | All |
| Reporter | LLVM Bugzilla Contributor |
Extended Description
TEST CASE:
typedef struct foo_s { int i; } * foo_t;
FIX TO:
using foo_t = struct foo_s *;
SHOULD FIX TO:
struct foo_s { int i; };
using foo_t = foo_s *;