// RUN: %swift -i %s | FileCheck %s class Foo { constructor(t:T, u:U) { print("constructor ") t.replPrint() print(" ") u.replPrint() println("") } func bar(u:U) { print("bar ") u.replPrint() println("") } } typealias FooInt = Foo // CHECK: constructor 1 "two" var foo = new FooInt(1, "two") // CHECK: bar '3' foo.bar('3')