Files
rust/src/libsyntax
Mazdak Farrokhzad 2e64bb2d37 syntax: reject trait Foo: Bar = Baz;.
Add test for rejecting `trait A: B1 = B2;`.
Also test rejection of `trait A: = B;`.
2019-10-24 00:31:11 +02:00
..
2019-10-15 09:41:58 +02:00
2019-09-26 18:21:09 +01:00
2019-09-26 18:21:48 +01:00
2019-10-15 08:19:43 +02:00
2019-10-20 23:03:33 +08:00
2019-10-14 09:14:39 +11:00
2019-10-15 09:41:58 +02:00
2019-10-16 22:54:28 +02: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: