aboutsummaryrefslogtreecommitdiff
path: root/tests/cfg.rs
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2020-07-10 20:23:30 -0700
committerChih-Hung Hsieh <chh@google.com>2020-07-13 22:26:50 -0700
commitd58366dc4a1a1ec807bb02dfc7928051799130ac (patch)
tree99470e8e8e4787e90b156f71bafac98438d6c39a /tests/cfg.rs
parent09ba014483c2506939704e0b993a728958553e25 (diff)
downloadpin-project-d58366dc4a1a1ec807bb02dfc7928051799130ac.tar.gz
Upgrade rust/crates/pin-project to 0.4.22android-r-beta-3android-r-beta-2
* Keep local change in src/lib.rs Test: make Change-Id: I63ca4a3f247df2028bcb6cb849823b296865f444
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]