Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No syntax for type of boxed trait with a kind bound and a generic parameter #9265

Closed
ben0x539 opened this issue Sep 17, 2013 · 2 comments · Fixed by #13079
Closed

No syntax for type of boxed trait with a kind bound and a generic parameter #9265

ben0x539 opened this issue Sep 17, 2013 · 2 comments · Fixed by #13079
Labels
A-parser Area: The parsing of Rust source code to an AST A-type-system Area: Type system

Comments

@ben0x539
Copy link
Contributor

trait Tr1<T> {}

fn f<T>(_x: ~Tr1<T>) {}

trait Tr2 {}
impl Tr2 for ();

fn g(_x: ~Tr2:Send) {}

// fn h1<T>(_x: ~Tr1:Send<T>) {} // error: wrong number of type arguments: expected 1 but found 0
                                 // (apparently the <T> parameterizes Send)

// fn h2<T>(_x: ~Tr1<T>:Send) {} // error: expected `,` but found `:`

fn main() {}

Seems like both generic parameters and kind bounds are individually okay on paths, but you can't have both right now.

The pretty printer would apparently happily emit the form in h1's declaration, but it's not currently parsed (and possibly ambiguous if there's a context where instead of Send there could be a user-defined trait with a legimitate parameter, not sure if that is possible).

The form in h2 seems somewhat sensible to me if we pretend that type parameters are part of individual path segments now but the kind bounds apply to the type as a whole, but of course the compiler isn't convinced.

Maybe I'm missing something. :)

@nikomatsakis
Copy link
Contributor

Uh, good point. I think I expected the syntax to be ~Tr1:Send<T>,
but I can see why the parser would disagree, and there is a certain
logic to ~Tr1<T>:Send. That might in fact be the better choice.

@huonw
Copy link
Member

huonw commented Jan 26, 2014

Triage: still fails to parse

bors added a commit that referenced this issue Mar 27, 2014
The previous syntax was `Foo:Bound<trait-parameters>`, but this is a little
ambiguous because it was being parsed as `Foo: (Bound<trait-parameters)` rather
than `Foo: (Bound) <trait-parameters>`

This commit changes the syntax to `Foo<trait-parameters>: Bound` in order to be
clear where the trait parameters are going.

Closes #9265
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-parser Area: The parsing of Rust source code to an AST A-type-system Area: Type system
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants