rust/src/test
Esteban Küber 6341a8b0e5 Clarify suggetion for field used as method
Instead of

```
error: no method named `src_addr` found for type `&wire::ipv4::Repr` in the current scope
   --> src/wire/ipv4.rs:409:34
    |
409 |         packet.set_src_addr(self.src_addr());
    |                                  ^^^^^^^^
    |
note: did you mean to write `self.src_addr`?
   --> src/wire/ipv4.rs:409:34
    |
409 |         packet.set_src_addr(self.src_addr());
    |                                  ^^^^^^^^
```

present

```
error: no method named `src_addr` found for type `&wire::ipv4::Repr` in the current scope
   --> src/wire/ipv4.rs:409:34
    |
409 |         packet.set_src_addr(self.src_addr());
    |                                  ^^^^^^^^ `src_addr` is a field, not a method
    |
    = help: did you mean to write `self.src_addr` instead of `self.src_addr(...)`?
```
2017-03-25 12:57:54 -07:00
..
codegen emit !align attributes on stores of operand pairs 2017-03-13 11:52:41 +02:00
codegen-units translate drop glue using MIR 2017-03-18 02:53:08 +02:00
compile-fail Clarify suggetion for field used as method 2017-03-25 12:57:54 -07:00
compile-fail-fulldeps Rollup merge of #40556 - cramertj:stabilize-pub-restricted, r=petrochenkov 2017-03-20 23:44:59 -04:00
debuginfo update gdbr tests 2017-03-09 22:12:36 +01:00
incremental rustc_typeck: hook up collect and item/body check to on-demand. 2017-02-25 18:35:25 +02:00
mir-opt Do not bother creating StorageLive for TyNever 2017-03-09 17:54:00 +02:00
parse-fail Refactor parsing of trait object types 2017-03-21 23:01:53 +03:00
pretty Update pretty test for derive attributes 2017-02-05 12:22:29 +10:30
run-fail Warn when a #[should_panic] test has an unexpected message 2016-11-18 21:01:19 +10:30
run-fail-fulldeps Fix fallout in rustdoc and tests. 2016-11-21 12:16:46 +00:00
run-make Auto merge of #40446 - arielb1:rollup, r=alexcrichton 2017-03-12 02:50:17 +00:00
run-pass Rollup merge of #40523 - durka:patch-38, r=petrochenkov 2017-03-22 19:30:24 -04:00
run-pass-fulldeps Fix bug in legacy #[derive] processing logic. 2017-03-21 16:53:34 -04:00
run-pass-valgrind Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
rustdoc Add whitespace around "=" in assoc items 2017-03-21 16:22:15 -04:00
ui Rollup merge of #40556 - cramertj:stabilize-pub-restricted, r=petrochenkov 2017-03-20 23:44:59 -04:00
ui-fulldeps/custom-derive Separate "ui-fulldeps" tests from "ui" tests 2017-03-04 21:38:26 +03:00
COMPILER_TESTS.md Move COMPILER_TESTS.md out of the root directory 2017-02-25 00:13:00 -06:00