aboutsummaryrefslogtreecommitdiff
path: root/tests/cfg.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cfg.rs')
-rw-r--r--tests/cfg.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/cfg.rs b/tests/cfg.rs
index 20b8472..4133517 100644
--- a/tests/cfg.rs
+++ b/tests/cfg.rs
@@ -21,7 +21,7 @@ struct Any(PhantomPinned);
fn cfg() {
// structs
- #[pin_project(Replace)]
+ #[pin_project(project_replace)]
struct SameName {
#[cfg(target_os = "linux")]
#[pin]
@@ -41,7 +41,7 @@ fn cfg() {
#[cfg(not(target_os = "linux"))]
let _x = SameName { inner: Other };
- #[pin_project(Replace)]
+ #[pin_project(project_replace)]
struct DifferentName {
#[cfg(target_os = "linux")]
#[pin]
@@ -61,7 +61,7 @@ fn cfg() {
#[cfg(not(target_os = "linux"))]
let _x = DifferentName { o: Other };
- #[pin_project(Replace)]
+ #[pin_project(project_replace)]
struct TupleStruct(
#[cfg(target_os = "linux")]
#[pin]
@@ -83,7 +83,7 @@ fn cfg() {
// enums
- #[pin_project(Replace)]
+ #[pin_project(project_replace)]
enum Variant {
#[cfg(target_os = "linux")]
Inner(#[pin] Linux),
@@ -110,7 +110,7 @@ fn cfg() {
#[cfg(not(target_os = "linux"))]
let _x = Variant::Other(Other);
- #[pin_project(Replace)]
+ #[pin_project(project_replace)]
enum Field {
SameName {
#[cfg(target_os = "linux")]
@@ -167,7 +167,7 @@ fn cfg() {
#[test]
fn cfg_attr() {
- #[pin_project(Replace)]
+ #[pin_project(project_replace)]
struct SameCfg {
#[cfg(target_os = "linux")]
#[cfg_attr(target_os = "linux", pin)]
@@ -193,7 +193,7 @@ fn cfg_attr() {
#[cfg(not(target_os = "linux"))]
let _: Pin<&mut Other> = x.inner;
- #[pin_project(Replace)]
+ #[pin_project(project_replace)]
struct DifferentCfg {
#[cfg(target_os = "linux")]
#[cfg_attr(target_os = "linux", pin)]
@@ -233,7 +233,7 @@ fn cfg_attr() {
#[test]
fn cfg_attr_any_packed() {
// Since `cfg(any())` can never be true, it is okay for this to pass.
- #[pin_project(Replace)]
+ #[pin_project(project_replace)]
#[cfg_attr(any(), repr(packed))]
struct Struct {
#[pin]