2020-04-19 23:40:53 +00:00
|
|
|
// check-pass
|
2021-03-01 03:41:05 +00:00
|
|
|
// compile-flags: --passes unknown-pass
|
2021-12-14 06:49:29 +00:00
|
|
|
// error-pattern: the `passes` flag no longer functions
|
2018-04-23 01:26:54 +00:00
|
|
|
|
2021-03-01 03:41:05 +00:00
|
|
|
#![doc(no_default_passes)]
|
|
|
|
//~^ WARNING attribute is deprecated
|
|
|
|
//~| NOTE see issue #44136
|
2021-12-14 06:49:29 +00:00
|
|
|
//~| HELP no longer functions; you may want to use `#![doc(document_private_items)]`
|
2021-03-01 03:41:05 +00:00
|
|
|
#![doc(passes = "collapse-docs unindent-comments")]
|
|
|
|
//~^ WARNING attribute is deprecated
|
|
|
|
//~| NOTE see issue #44136
|
2021-12-14 06:49:29 +00:00
|
|
|
//~| HELP no longer functions; you may want to use `#![doc(document_private_items)]`
|
2021-03-01 03:51:35 +00:00
|
|
|
#![doc(plugins = "xxx")]
|
|
|
|
//~^ WARNING attribute is deprecated
|
|
|
|
//~| NOTE see issue #44136
|
|
|
|
//~| WARNING no longer functions; see CVE
|