aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/syntax-extension-fmt.rs
blob: 66fe4fd7ce020bc1a364e121e41bc1d267d9ce83 (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");
}