mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
13 lines
283 B
Rust
13 lines
283 B
Rust
// Test for #109537: ensure that column numbers are correctly generated when using hard tabs.
|
|
//@ aux-build:tab_column_numbers.rs
|
|
|
|
// ignore-tidy-tab
|
|
|
|
extern crate tab_column_numbers;
|
|
|
|
fn main() {
|
|
let s = tab_column_numbers::S;
|
|
s.method();
|
|
//~^ ERROR method `method` is private
|
|
}
|