]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/plugin-reexport.rs
Rollup merge of #64749 - matthewjasper:liveness-opt, r=nikomatsakis
[rust.git] / src / test / ui-fulldeps / plugin-reexport.rs
1 // edition:2018
2 // aux-build:attr-plugin-test.rs
3 // ignore-stage1
4
5 #![feature(plugin)]
6 #![plugin(attr_plugin_test)]
7 //~^ WARN use of deprecated attribute `plugin`
8
9 pub use mac as reexport; //~ ERROR `mac` is private, and cannot be re-exported
10
11 fn main() {}