blob: 4f80dad878d5851fa9350561bf451a049a6b0142 [file] [log] [blame]
Dmitry Shevchenkobefa57c2016-05-27 15:48:12 +00001import class examples_BarLib.Multiplier
Dmitry Shevchenko2036dbd2016-04-22 20:46:07 +00002
3public class Foo {
4 public init() {}
5
6 public func multiply() -> Int {
Dmitry Shevchenko2afab6b2017-01-13 22:18:10 +00007 return Multiplier().multiply(a: Constants.x, b: Constants.y)
Dmitry Shevchenko2036dbd2016-04-22 20:46:07 +00008 }
9}