diff options
| author | Oneirical <manchot@videotron.ca> | 2025-07-13 16:56:31 -0400 |
|---|---|---|
| committer | Oneirical <manchot@videotron.ca> | 2025-08-17 13:01:02 -0400 |
| commit | 75e0263af9ca27eac2c922538582deec764d1e7b (patch) | |
| tree | bc8584c15f51966d5ddee98a6782785d5c158fe0 /tests/ui/methods/trait-method-self-param-error-7575.rs | |
| parent | 2e2642e641a941f0a1400c7827fd89aa86fef8f4 (diff) | |
| download | rust-75e0263af9ca27eac2c922538582deec764d1e7b.tar.gz rust-75e0263af9ca27eac2c922538582deec764d1e7b.zip | |
Rehome tests/ui/issues/ tests [5/?]
Diffstat (limited to 'tests/ui/methods/trait-method-self-param-error-7575.rs')
| -rw-r--r-- | tests/ui/methods/trait-method-self-param-error-7575.rs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/methods/trait-method-self-param-error-7575.rs b/tests/ui/methods/trait-method-self-param-error-7575.rs new file mode 100644 index 00000000000..9793d43cc24 --- /dev/null +++ b/tests/ui/methods/trait-method-self-param-error-7575.rs @@ -0,0 +1,18 @@ +// https://github.com/rust-lang/rust/issues/7575 +//@ run-pass + +trait Foo { //~ WARN trait `Foo` is never used + fn new() -> bool { false } + fn dummy(&self) { } +} + +trait Bar { + fn new(&self) -> bool { true } +} + +impl Bar for isize {} +impl Foo for isize {} + +fn main() { + assert!(1.new()); +} |
