Apply suggestions from code review

Co-Authored-By: Mazdak Farrokhzad <twingoow@gmail.com>
This commit is contained in:
matthewjasper 2019-10-25 18:50:40 +01:00 committed by GitHub
parent 707315857a
commit 0c05ed29fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
// Test that an impl trait type that expands to itself is an error.
// Test that an `impl Trait` type that expands to itself is an error.
fn test() -> impl Sized { //~ ERROR E0720
fn test() -> impl Sized { //~ ERROR E0720
test()
}