Add test for primitive in "jump to definition" feature
This commit is contained in:
parent
8f3fd3d08c
commit
d73c0a3d69
17
src/test/rustdoc/check-source-code-urls-to-def-std.rs
Normal file
17
src/test/rustdoc/check-source-code-urls-to-def-std.rs
Normal file
@ -0,0 +1,17 @@
|
||||
// compile-flags: -Zunstable-options --generate-link-to-definition
|
||||
|
||||
#![crate_name = "foo"]
|
||||
|
||||
// @has 'src/foo/check-source-code-urls-to-def-std.rs.html'
|
||||
|
||||
fn babar() {}
|
||||
|
||||
// @has - '//a[@href="{{channel}}/std/primitive.u32.html"]' 'u32'
|
||||
// @has - '//a[@href="{{channel}}/std/primitive.str.html"]' 'str'
|
||||
// @has - '//a[@href="{{channel}}/std/primitive.bool.html"]' 'bool'
|
||||
// @has - '//a[@href="../../src/foo/check-source-code-urls-to-def-std.rs.html#7"]' 'babar'
|
||||
pub fn foo(a: u32, b: &str, c: String) {
|
||||
let x = 12;
|
||||
let y: bool = true;
|
||||
babar();
|
||||
}
|
@ -27,6 +27,8 @@ impl Foo {
|
||||
fn babar() {}
|
||||
|
||||
// @has - '//a/@href' '/struct.String.html'
|
||||
// @has - '//a/@href' '/primitive.u32.html'
|
||||
// @has - '//a/@href' '/primitive.str.html'
|
||||
// @count - '//a[@href="../../src/foo/check-source-code-urls-to-def.rs.html#21"]' 5
|
||||
// @has - '//a[@href="../../source_code/struct.SourceCode.html"]' 'source_code::SourceCode'
|
||||
pub fn foo(a: u32, b: &str, c: String, d: Foo, e: bar::Bar, f: source_code::SourceCode) {
|
||||
@ -40,5 +42,9 @@ pub fn foo(a: u32, b: &str, c: String, d: Foo, e: bar::Bar, f: source_code::Sour
|
||||
|
||||
// @has - '//a[@href="../../src/foo/auxiliary/source-code-bar.rs.html#14-16"]' 'bar::sub::Trait'
|
||||
// @has - '//a[@href="../../src/foo/auxiliary/source-code-bar.rs.html#14-16"]' 'Trait'
|
||||
pub fn foo2<T: bar::sub::Trait, V: Trait>(t: &T, v: &V) {
|
||||
pub fn foo2<T: bar::sub::Trait, V: Trait>(t: &T, v: &V, b: bool) {
|
||||
}
|
||||
|
||||
// @has - '//a[@href="../../foo/primitive.bool.html"]' 'bool'
|
||||
#[doc(primitive = "bool")]
|
||||
mod whatever {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user