about summary refs log tree commit diff
path: root/src/libsyntax_pos/lib.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2019-04-15 10:03:39 +0000
committerbors <bors@rust-lang.org>2019-04-15 10:03:39 +0000
commitfcf850f34a4db4baa3ccda0e8e2e53eca5fc9936 (patch)
treeaf0d50f530b578150d408cb2e8a95a551829ef17 /src/libsyntax_pos/lib.rs
parent1edb01b7afe758dc79740e72fb8b9909402c9620 (diff)
parentf598091c055100daa1dc0d9c3f0f0a10209a0a84 (diff)
downloadrust-fcf850f34a4db4baa3ccda0e8e2e53eca5fc9936.tar.gz
rust-fcf850f34a4db4baa3ccda0e8e2e53eca5fc9936.zip
Auto merge of #59655 - Zoxc:symbols, r=petrochenkov
Use a proc macro to declare preallocated symbols

r? @petrochenkov
Diffstat (limited to 'src/libsyntax_pos/lib.rs')
-rw-r--r--src/libsyntax_pos/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libsyntax_pos/lib.rs b/src/libsyntax_pos/lib.rs
index 81cf804cf0b..1ad556bbcfa 100644
--- a/src/libsyntax_pos/lib.rs
+++ b/src/libsyntax_pos/lib.rs
@@ -16,6 +16,7 @@
 #![feature(non_exhaustive)]
 #![feature(optin_builtin_traits)]
 #![feature(rustc_attrs)]
+#![feature(proc_macro_hygiene)]
 #![feature(specialization)]
 #![feature(step_trait)]
 
@@ -32,6 +33,7 @@ mod span_encoding;
 pub use span_encoding::{Span, DUMMY_SP};
 
 pub mod symbol;
+pub use symbol::symbols;
 
 mod analyze_source_file;