Skip to content

Commit e6ebec3

Browse files
committed
T: Be more specific in an auto completion test
In the future we will auto complete primitive type names. Since the types f32 and f64 also started with the prefix "f" used in the test we would get an unexpected auto completion.
1 parent f9d0145 commit e6ebec3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/kotlin/org/rust/lang/core/completion/RsCompletionTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ class RsCompletionTest : RsCompletionTestBase() {
160160
fn foobar() {}
161161
162162
fn main() {
163-
let _: f/*caret*/ = unimplemented!();
163+
let _: fo/*caret*/ = unimplemented!();
164164
}
165165
""")
166166

0 commit comments

Comments
 (0)