]> git.proxmox.com Git - rustc.git/blame - src/test/ui/feature-gates/feature-gate-plugin_registrar.rs
New upstream version 1.55.0+dfsg1
[rustc.git] / src / test / ui / feature-gates / feature-gate-plugin_registrar.rs
CommitLineData
c34b1796
AL
1// Test that `#[plugin_registrar]` attribute is gated by `plugin_registrar`
2// feature gate.
3
1a4d82fc
JJ
4// the registration function isn't typechecked yet
5#[plugin_registrar]
e74abb32
XL
6//~^ ERROR compiler plugins are deprecated
7//~| WARN use of deprecated attribute `plugin_registrar`: compiler plugins are deprecated
c34b1796 8pub fn registrar() {}
e74abb32
XL
9//~^ ERROR compiler plugins are experimental and possibly buggy
10
970d7e83 11fn main() {}