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

Delayed resolution #1408

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
typos
Julian Orth committed Dec 14, 2015
commit f59051cae6b85fdb3b41570a3f5feb2483a56005
8 changes: 4 additions & 4 deletions text/0000-delayed-relosution.md
Original file line number Diff line number Diff line change
@@ -61,14 +61,14 @@ static S: Type;
const C: Type;
```

where `Bounds` is a collection of trait and lifetime bounds. Users of `T`
definition can only use the properties exposed by the bounds. And where `Type`
is an arbitrary (possibly extern) type.
where `Bounds` is a collection of trait and lifetime bounds. Users of `T` can
only use the properties exposed by the bounds. And where `Type` is an arbitrary
(possibly extern) type.

## Defining extern items

The `#[extern]` attribute can be applied in the `#[extern = path]` form to
define an extern items. For example
define an extern item. For example

```rust
#[extern = "alloc::Default"]