Files
swift-mirror/validation-test/Evolution/test_move_method_to_extension.swift
Slava Pestov 6798eea160 Evolution: Some of these tests pass with swift_test_mode_optimize_none_with_implicit_dynamic
The remaining failures still warrant investigation.
2019-06-11 00:54:32 -07:00

18 lines
295 B
Swift

// RUN: %target-resilience-test
// REQUIRES: executable_test
import StdlibUnittest
import move_method_to_extension
var MoveMethodToExtensionTest = TestSuite("MoveMethodToExtension")
MoveMethodToExtensionTest.test("MoveMethodToExtension") {
Rain().doIt()
Snow().doIt()
}
runAllTests()