├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src ├── expand.rs ├── lib.rs ├── parse.rs └── verbatim.rs └── tests ├── compiletest.rs ├── test.rs └── ui ├── associated-type.rs ├── associated-type.stderr ├── blanket-impl.rs ├── blanket-impl.stderr ├── not-trait-impl.rs ├── not-trait-impl.stderr ├── not-visible.rs └── not-visible.stderr /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: dtolnay 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/README.md -------------------------------------------------------------------------------- /src/expand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/src/expand.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/src/parse.rs -------------------------------------------------------------------------------- /src/verbatim.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/src/verbatim.rs -------------------------------------------------------------------------------- /tests/compiletest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/tests/compiletest.rs -------------------------------------------------------------------------------- /tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/tests/test.rs -------------------------------------------------------------------------------- /tests/ui/associated-type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/tests/ui/associated-type.rs -------------------------------------------------------------------------------- /tests/ui/associated-type.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/tests/ui/associated-type.stderr -------------------------------------------------------------------------------- /tests/ui/blanket-impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/tests/ui/blanket-impl.rs -------------------------------------------------------------------------------- /tests/ui/blanket-impl.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/tests/ui/blanket-impl.stderr -------------------------------------------------------------------------------- /tests/ui/not-trait-impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/tests/ui/not-trait-impl.rs -------------------------------------------------------------------------------- /tests/ui/not-trait-impl.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/tests/ui/not-trait-impl.stderr -------------------------------------------------------------------------------- /tests/ui/not-visible.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/tests/ui/not-visible.rs -------------------------------------------------------------------------------- /tests/ui/not-visible.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/inherent/HEAD/tests/ui/not-visible.stderr --------------------------------------------------------------------------------