about summary refs log tree commit diff
path: root/src/test/run-make-fulldeps/rustdoc-error-lines/input.rs
blob: 7b07f38f2594820ae4c7424f3abd5a86603d7ed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Test for #45868

// random #![feature] to ensure that crate attrs
// do not offset things
/// ```rust
/// #![feature(nll)]
/// let x: char = 1;
/// ```
pub fn foo() {

}