diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-01-27 16:38:57 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-01-27 16:58:27 -0800 |
| commit | 53dbde6cc2aabbf44bf75aea1eecad5729396081 (patch) | |
| tree | 23357fe263a0a2fc8182dd214abf455fd49cb0a9 /src/test | |
| parent | 3321880f1304943a87f3b9756de642417eb82d1b (diff) | |
rustc: Make 'attempted access of field' error non-fatal
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/compile-fail/attempted-access-non-fatal.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/test/compile-fail/attempted-access-non-fatal.rs b/src/test/compile-fail/attempted-access-non-fatal.rs new file mode 100644 index 00000000000..7ead10b3f63 --- /dev/null +++ b/src/test/compile-fail/attempted-access-non-fatal.rs @@ -0,0 +1,6 @@ +// Check that bogus field access is non-fatal +fn main() { + let x = 0; + log(debug, x.foo); //! ERROR attempted access of field + log(debug, x.bar); //! ERROR attempted access of field +} \ No newline at end of file |
