-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new test for parsing errors on self pointers
Add new tests to highlight the behavior of errors thrown when meeting a self pointer. gcc/testsuite/ChangeLog: * rust/compile/self_const_ptr.rs: New test. * rust/compile/self_mut_ptr.rs: New test. * rust/compile/self_ptr.rs: New test. Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
- Loading branch information
Showing
3 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
struct MyStruct; | ||
|
||
impl MyStruct { | ||
pub fn do_something(*const self) {} | ||
// { dg-error "cannot pass .self. by raw pointer" "" { target *-*-* } .-1 } | ||
// { dg-error "failed to parse inherent impl item in inherent impl" "" { target *-*-* } .-2 } | ||
// { dg-error "failed to parse item in crate" "" { target *-*-* } .-3 } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
struct MyStruct; | ||
|
||
impl MyStruct { | ||
pub fn do_something(*mut self) {} | ||
// { dg-error "cannot pass .self. by raw pointer" "" { target *-*-* } .-1 } | ||
// { dg-error "failed to parse inherent impl item in inherent impl" "" { target *-*-* } .-2 } | ||
// { dg-error "failed to parse item in crate" "" { target *-*-* } .-3 } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
struct MyStruct; | ||
|
||
impl MyStruct { | ||
pub fn do_something(*self) {} | ||
// { dg-error "cannot pass .self. by raw pointer" "" { target *-*-* } .-1 } | ||
// { dg-error "failed to parse inherent impl item in inherent impl" "" { target *-*-* } .-2 } | ||
// { dg-error "failed to parse item in crate" "" { target *-*-* } .-3 } | ||
} |