about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-01-24 11:02:03 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-01-26 11:03:13 -0800
commit4d6836f418e35de76ca072092372cbd55b01867a (patch)
tree9b4bb81d4a7f82a08ede485f30a6eee9487e361c /src/libsyntax/parse
parent31ac9c4288f32c2afdce11e616668b251e6164ef (diff)
downloadrust-4d6836f418e35de76ca072092372cbd55b01867a.tar.gz
rust-4d6836f418e35de76ca072092372cbd55b01867a.zip
Fix privacy fallout from previous change
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index 557e7e04ebf..7d36d3da561 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -122,7 +122,7 @@ struct PathSegmentAndBoundSet {
 }
 
 /// A path paired with optional type bounds.
-struct PathAndBounds {
+pub struct PathAndBounds {
     path: ast::Path,
     bounds: Option<OptVec<TyParamBound>>,
 }