rust/src/libsyntax
bors 2cad8bb659 Auto merge of #66206 - PotHix:master, r=estebank
Suggest `#[repr(C)]` instead of `#[repr(C, packed, ...)]`

The code was previously suggesting `#[repr(C, packed, ...)]` for incorrect uses of `repr` (e.g. `#[repr = "C"]`). This change suggests the usage of `#[repr(C)]` instead.

r? @estebank

Ref: #61286.
2019-11-19 07:49:54 +00:00
..
2019-11-10 03:57:18 +01:00
2019-11-17 01:11:28 +03:00
2019-11-15 08:45:49 -05:00
2019-11-10 03:57:18 +01:00
2019-11-11 22:23:25 +03:00
2019-11-11 22:23:25 +03:00
2019-11-14 13:40:42 +01:00

The syntax crate contains those things concerned purely with syntax that is, the AST ("abstract syntax tree"), parser, pretty-printer, lexer, macro expander, and utilities for traversing ASTs.

For more information about how these things work in rustc, see the rustc guide: