diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-01-24 11:02:03 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-01-26 11:03:13 -0800 |
| commit | 4d6836f418e35de76ca072092372cbd55b01867a (patch) | |
| tree | 9b4bb81d4a7f82a08ede485f30a6eee9487e361c /src/test/compile-fail/mutable-class-fields-2.rs | |
| parent | 31ac9c4288f32c2afdce11e616668b251e6164ef (diff) | |
| download | rust-4d6836f418e35de76ca072092372cbd55b01867a.tar.gz rust-4d6836f418e35de76ca072092372cbd55b01867a.zip | |
Fix privacy fallout from previous change
Diffstat (limited to 'src/test/compile-fail/mutable-class-fields-2.rs')
| -rw-r--r-- | src/test/compile-fail/mutable-class-fields-2.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/mutable-class-fields-2.rs b/src/test/compile-fail/mutable-class-fields-2.rs index 30c2b9eef8c..377c745acf3 100644 --- a/src/test/compile-fail/mutable-class-fields-2.rs +++ b/src/test/compile-fail/mutable-class-fields-2.rs @@ -9,7 +9,7 @@ // except according to those terms. struct cat { - priv meows : uint, + meows : uint, how_hungry : int, } |
