summary refs log tree commit diff
path: root/src/test/ui-fulldeps/plugin-as-extern-crate.rs
blob: dde73ba69f7bf30f0de9732d52172caa35e25cad (plain)
1
2
3
4
5
6
7
8
9
10
11
// aux-build:attr-plugin-test.rs
// ignore-cross-compile
//
// attr_plugin_test will not compile on a cross-compiled target because
// libsyntax is not compiled for it.

#![deny(plugin_as_library)]

extern crate attr_plugin_test; //~ ERROR compiler plugin used as an ordinary library

fn main() { }