blob: 4d8ede1680830a163cfab34c229ac0e26943cd2d (
plain)
1
2
3
4
5
6
7
8
9
10
|
// edition:2018
// aux-build:attr-plugin-test.rs
// ignore-stage1
#![feature(plugin)]
#![plugin(attr_plugin_test)]
pub use mac as reexport; //~ ERROR `mac` is private, and cannot be re-exported
fn main() {}
|