2019-10-02 23:01:52 -07:00
|
|
|
warning: the feature `track_caller` is incomplete and may cause the compiler to crash
|
|
|
|
--> $DIR/only-for-fns.rs:1:12
|
|
|
|
|
|
|
|
|
LL | #![feature(track_caller)]
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `#[warn(incomplete_features)]` on by default
|
|
|
|
|
2019-10-02 22:35:58 -07:00
|
|
|
error[E0735]: attribute should be applied to function
|
2019-07-20 00:55:58 +00:00
|
|
|
--> $DIR/only-for-fns.rs:3:1
|
|
|
|
|
|
|
|
|
LL | #[track_caller]
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
LL | struct S;
|
|
|
|
| --------- not a function
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|