aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/syntax-extension-fmt.rs
blob: a0f51c27ace32f6c74d1662482ecbd83facb52ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
//use std;
//import std._str;

fn test(str actual, str expected) {
  log actual;
  log expected;
  //check (_str.eq(actual, expected));
}

fn main() {
  test(#fmt("hello %d friends and %s things", 10, "formatted"),
       "hello 10 friends and formatted things");
}