diff options
| author | Christoph Burgdorf <christoph.burgdorf@bvsn.org> | 2014-08-26 22:44:53 +0200 |
|---|---|---|
| committer | Christoph Burgdorf <christoph.burgdorf@bvsn.org> | 2014-08-26 22:44:53 +0200 |
| commit | 7fb3aa5eeaefdb37980cb974bc9e64ae8c56e4fd (patch) | |
| tree | b84b68c6839fb7276310b327bbfea2ad4d683641 /src | |
| parent | 80b45ddbd351f0a4a939c3a3c4e20b4defec4b35 (diff) | |
| download | rust-7fb3aa5eeaefdb37980cb974bc9e64ae8c56e4fd.tar.gz rust-7fb3aa5eeaefdb37980cb974bc9e64ae8c56e4fd.zip | |
add missing ! char to feature gate hint
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustc/middle/typeck/check/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/middle/typeck/check/mod.rs b/src/librustc/middle/typeck/check/mod.rs index 02464e17bac..1e7c72f5eef 100644 --- a/src/librustc/middle/typeck/check/mod.rs +++ b/src/librustc/middle/typeck/check/mod.rs @@ -1645,7 +1645,7 @@ fn try_overloaded_call(fcx: &FnCtxt, span_err!(fcx.tcx().sess, call_expression.span, E0056, "overloaded calls are experimental"); span_note!(fcx.tcx().sess, call_expression.span, - "add `#[feature(overloaded_calls)]` to \ + "add `#![feature(overloaded_calls)]` to \ the crate attributes to enable"); } |
