summary refs log tree commit diff
path: root/src/test/ui/issues/issue-22468.stderr
blob: 8d8601b311166e2e5e189afeac0416edf747a50d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0618]: expected function, found `&str`
  --> $DIR/issue-22468.rs:3:13
   |
LL |     let foo = "bar";
   |         --- `&str` defined here
LL |     let x = foo("baz");
   |             ^^^-------
   |             |
   |             call expression requires function

error: aborting due to previous error

For more information about this error, try `rustc --explain E0618`.