├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── bench ├── sample-files │ ├── 10k.scala.ignore │ ├── Typer.scala.ignore │ ├── basic.scala.ignore │ └── generate.py └── src │ └── main │ └── scala │ └── kentuckymule │ └── bench │ ├── BenchmarkEnter.scala │ ├── BenchmarkParsing.scala │ └── BenchmarkScalap.scala ├── kentuckyMule.jar ├── kentuckymule └── src │ ├── main │ └── scala │ │ ├── Eq.scala │ │ ├── dotty │ │ └── tools │ │ │ ├── dotc │ │ │ ├── CompilationUnit.scala │ │ │ ├── ast │ │ │ │ ├── Positioned.scala │ │ │ │ ├── Trees.scala │ │ │ │ ├── tpd.scala │ │ │ │ └── untpd.scala │ │ │ ├── config │ │ │ │ ├── Properties.scala │ │ │ │ ├── ScalaSettings.scala │ │ │ │ ├── ScalaVersion.scala │ │ │ │ └── Settings.scala │ │ │ ├── core │ │ │ │ ├── Constants.scala │ │ │ │ ├── Contexts.scala │ │ │ │ ├── Decorators.scala │ │ │ │ ├── Definitions.scala │ │ │ │ ├── Flags.scala │ │ │ │ ├── Mode.scala │ │ │ │ ├── NameOps.scala │ │ │ │ ├── Names.scala │ │ │ │ ├── Scopes.scala │ │ │ │ ├── Signature.scala │ │ │ │ ├── StdNames.scala │ │ │ │ └── TypeOps.scala │ │ │ ├── parsing │ │ │ │ ├── CharArrayReader.scala │ │ │ │ ├── MarkupParserCommon.scala │ │ │ │ ├── Parsers.scala │ │ │ │ ├── Scanners.scala │ │ │ │ ├── ScriptParsers.scala │ │ │ │ ├── Tokens.scala │ │ │ │ ├── Utility.scala │ │ │ │ └── package.scala │ │ │ ├── printing │ │ │ │ ├── Formatting.scala │ │ │ │ ├── PlainPrinter.scala │ │ │ │ ├── Printer.scala │ │ │ │ ├── Printers.scala │ │ │ │ ├── Showable.scala │ │ │ │ ├── Texts.scala │ │ │ │ └── package.scala │ │ │ ├── reporting │ │ │ │ ├── ConsoleReporter.scala │ │ │ │ ├── Diagnostic.scala │ │ │ │ ├── HideNonSensicalMessages.scala │ │ │ │ ├── Reporter.scala │ │ │ │ ├── StoreReporter.scala │ │ │ │ ├── ThrowingReporter.scala │ │ │ │ └── UniqueMessagePositions.scala │ │ │ ├── rewrite │ │ │ │ └── Rewrites.scala │ │ │ └── util │ │ │ │ ├── Attachment.scala │ │ │ │ ├── Chars.scala │ │ │ │ ├── DiffUtil.scala │ │ │ │ ├── DotClass.scala │ │ │ │ ├── FreshNameCreator.scala │ │ │ │ ├── HashSet.scala │ │ │ │ ├── LRUCache.scala │ │ │ │ ├── NameTransformer.scala │ │ │ │ ├── Positions.scala │ │ │ │ ├── Set.scala │ │ │ │ ├── SimpleMap.scala │ │ │ │ ├── SixteenNibbles.scala │ │ │ │ ├── SourceFile.scala │ │ │ │ ├── SourcePosition.scala │ │ │ │ ├── Stats.scala │ │ │ │ ├── Util.scala │ │ │ │ └── common.scala │ │ │ ├── io │ │ │ ├── ClassPath.scala │ │ │ ├── DaemonThreadFactory.scala │ │ │ ├── Fileish.scala │ │ │ ├── Jar.scala │ │ │ └── package.scala │ │ │ └── package.scala │ │ └── kentuckymule │ │ ├── Main.scala │ │ ├── ProgressBar.scala │ │ ├── ScalaLibHelper.scala │ │ ├── ScalapHelper.scala │ │ ├── TarjanSCC.scala │ │ ├── Timer.scala │ │ ├── core │ │ ├── CollectionUtils.scala │ │ ├── Completer.scala │ │ ├── CompletionJob.scala │ │ ├── CompletionResult.scala │ │ ├── DependenciesExtraction.scala │ │ ├── Enter.scala │ │ ├── ResolveType.scala │ │ ├── Symbols.scala │ │ └── Types.scala │ │ └── queue │ │ ├── JobQueue.scala │ │ ├── QueueJob.scala │ │ └── QueueJobStore.scala │ └── test │ └── scala │ ├── dotty │ └── tools │ │ └── dotc │ │ └── core │ │ ├── IOUtils.scala │ │ └── ScopeTest.scala │ └── kentuckymule │ ├── EnterTest.scala │ ├── TarjanSCCTest.scala │ └── queue │ └── JobQueueTest.scala ├── kentuckymule_scalap.gif ├── notes.md ├── project ├── build.properties └── plugins.sbt └── sample-projects ├── scala ├── .gitattributes ├── .gitignore ├── .gitrepo ├── .mailmap ├── .travis.yml ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── build.sbt ├── dbuild-meta.json ├── doc │ ├── LICENSE.md │ ├── License.rtf │ ├── README │ └── licenses │ │ ├── apache_jansi.txt │ │ ├── bsd_asm.txt │ │ ├── bsd_jline.txt │ │ ├── mit_jquery.txt │ │ ├── mit_sizzle.txt │ │ └── mit_tools.tooltip.txt ├── gitconfig.SAMPLE ├── lib │ └── ant │ │ ├── ant-contrib.jar.desired.sha1 │ │ ├── ant-dotnet-1.0.jar.desired.sha1 │ │ ├── ant.jar.desired.sha1 │ │ ├── maven-ant-tasks-2.1.1.jar.desired.sha1 │ │ └── vizant.jar.desired.sha1 ├── project │ ├── BuildSettings.scala │ ├── GenerateAnyVals.scala │ ├── JarJar.scala │ ├── Osgi.scala │ ├── ParserUtil.scala │ ├── PartestUtil.scala │ ├── Quiet.scala │ ├── ScalaOptionParser.scala │ ├── ScalaTool.scala │ ├── ScriptCommands.scala │ ├── VersionUtil.scala │ ├── build.properties │ ├── build.sbt │ ├── plugins.sbt │ └── project │ │ └── plugins.sbt ├── scripts │ ├── common │ ├── jobs │ │ ├── integrate │ │ │ ├── bootstrap │ │ │ ├── ide │ │ │ └── windows │ │ └── validate │ │ │ ├── publish-core │ │ │ └── test │ ├── readproperties.awk │ ├── stability-test.sh │ └── travis-publish-spec.sh ├── spec │ ├── 01-lexical-syntax.md │ ├── 02-identifiers-names-and-scopes.md │ ├── 03-types.md │ ├── 04-basic-declarations-and-definitions.md │ ├── 05-classes-and-objects.md │ ├── 06-expressions.md │ ├── 07-implicits.md │ ├── 08-pattern-matching.md │ ├── 09-top-level-definitions.md │ ├── 10-xml-expressions-and-patterns.md │ ├── 11-annotations.md │ ├── 12-the-scala-standard-library.md │ ├── 13-syntax-summary.md │ ├── 14-references.md │ ├── 15-changelog.md │ ├── README.md │ ├── _config.yml │ ├── _includes │ │ └── numbering.css │ ├── _layouts │ │ ├── default.yml │ │ └── toc.yml │ ├── id_dsa_travis.enc │ ├── index.md │ └── public │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── Heuristica-Bold.woff │ │ ├── Heuristica-BoldItalic.woff │ │ ├── Heuristica-Regular.woff │ │ ├── Heuristica-RegularItalic.woff │ │ ├── LuxiMono-Bold.woff │ │ ├── LuxiMono-BoldOblique.woff │ │ ├── LuxiMono-Regular.woff │ │ ├── LuxiMono-RegularOblique.woff │ │ ├── LuxiSans-Bold.woff │ │ └── LuxiSans-Regular.woff │ │ ├── images │ │ ├── classhierarchy.pdf │ │ ├── github-logo@2x.png │ │ └── scala-spiral-white.png │ │ ├── octicons │ │ ├── LICENSE.txt │ │ ├── octicons.css │ │ ├── octicons.eot │ │ ├── octicons.svg │ │ ├── octicons.ttf │ │ └── octicons.woff │ │ ├── scripts │ │ ├── LICENSE-highlight │ │ ├── LICENSE-toc │ │ ├── highlight.pack.js │ │ ├── main.js │ │ └── toc.js │ │ └── stylesheets │ │ ├── fonts.css │ │ ├── print.css │ │ ├── screen-small.css │ │ ├── screen-toc.css │ │ └── screen.css ├── src │ ├── build │ │ ├── InnerObjectTestGen.scala │ │ ├── dbuild-meta-json-gen.scala │ │ └── genprod.scala │ ├── compiler │ │ ├── rootdoc.txt │ │ └── scala │ │ │ ├── reflect │ │ │ ├── macros │ │ │ │ ├── compiler │ │ │ │ │ ├── DefaultMacroCompiler.scala │ │ │ │ │ ├── Errors.scala │ │ │ │ │ ├── Resolvers.scala │ │ │ │ │ └── Validators.scala │ │ │ │ ├── contexts │ │ │ │ │ ├── Aliases.scala │ │ │ │ │ ├── Context.scala │ │ │ │ │ ├── Enclosures.scala │ │ │ │ │ ├── Evals.scala │ │ │ │ │ ├── ExprUtils.scala │ │ │ │ │ ├── FrontEnds.scala │ │ │ │ │ ├── Infrastructure.scala │ │ │ │ │ ├── Internals.scala │ │ │ │ │ ├── Names.scala │ │ │ │ │ ├── Parsers.scala │ │ │ │ │ ├── Reifiers.scala │ │ │ │ │ ├── Traces.scala │ │ │ │ │ └── Typers.scala │ │ │ │ ├── runtime │ │ │ │ │ ├── AbortMacroException.scala │ │ │ │ │ ├── JavaReflectionRuntimes.scala │ │ │ │ │ ├── MacroRuntimes.scala │ │ │ │ │ └── package.scala │ │ │ │ └── util │ │ │ │ │ ├── Helpers.scala │ │ │ │ │ └── Traces.scala │ │ │ ├── quasiquotes │ │ │ │ ├── Holes.scala │ │ │ │ ├── Parsers.scala │ │ │ │ ├── Placeholders.scala │ │ │ │ ├── Quasiquotes.scala │ │ │ │ └── Reifiers.scala │ │ │ └── reify │ │ │ │ ├── Errors.scala │ │ │ │ ├── Phases.scala │ │ │ │ ├── Reifier.scala │ │ │ │ ├── States.scala │ │ │ │ ├── Taggers.scala │ │ │ │ ├── codegen │ │ │ │ ├── GenAnnotationInfos.scala │ │ │ │ ├── GenNames.scala │ │ │ │ ├── GenPositions.scala │ │ │ │ ├── GenSymbols.scala │ │ │ │ ├── GenTrees.scala │ │ │ │ ├── GenTypes.scala │ │ │ │ └── GenUtils.scala │ │ │ │ ├── package.scala │ │ │ │ ├── phases │ │ │ │ ├── Calculate.scala │ │ │ │ ├── Metalevels.scala │ │ │ │ ├── Reify.scala │ │ │ │ └── Reshape.scala │ │ │ │ └── utils │ │ │ │ ├── Extractors.scala │ │ │ │ ├── NodePrinters.scala │ │ │ │ ├── StdAttachments.scala │ │ │ │ ├── SymbolTables.scala │ │ │ │ └── Utils.scala │ │ │ └── tools │ │ │ ├── ant │ │ │ ├── ClassloadVerify.scala │ │ │ ├── FastScalac.scala │ │ │ ├── Pack200Task.scala │ │ │ ├── Same.scala │ │ │ ├── ScalaMatchingTask.scala │ │ │ ├── ScalaTool.scala │ │ │ ├── Scalac.scala │ │ │ ├── ScalacShared.scala │ │ │ ├── antlib.xml │ │ │ ├── sabbus │ │ │ │ ├── Break.scala │ │ │ │ ├── CompilationFailure.scala │ │ │ │ ├── Compiler.scala │ │ │ │ ├── Compilers.scala │ │ │ │ ├── ForeignCompiler.scala │ │ │ │ ├── Make.scala │ │ │ │ ├── ScalacFork.scala │ │ │ │ ├── Settings.scala │ │ │ │ ├── TaskArgs.scala │ │ │ │ ├── Use.scala │ │ │ │ └── antlib.xml │ │ │ └── templates │ │ │ │ ├── tool-unix.tmpl │ │ │ │ └── tool-windows.tmpl │ │ │ ├── asm │ │ │ └── LabelAccess.java │ │ │ ├── cmd │ │ │ ├── CommandLine.scala │ │ │ ├── CommandLineParser.scala │ │ │ ├── FromString.scala │ │ │ ├── Instance.scala │ │ │ ├── Interpolation.scala │ │ │ ├── Meta.scala │ │ │ ├── Opt.scala │ │ │ ├── Property.scala │ │ │ ├── Reference.scala │ │ │ ├── Spec.scala │ │ │ └── package.scala │ │ │ ├── nsc │ │ │ ├── ClassPathMemoryConsumptionTester.scala │ │ │ ├── CompilationUnits.scala │ │ │ ├── CompileClient.scala │ │ │ ├── CompileServer.scala │ │ │ ├── CompileSocket.scala │ │ │ ├── CompilerCommand.scala │ │ │ ├── ConsoleWriter.scala │ │ │ ├── Driver.scala │ │ │ ├── EvalLoop.scala │ │ │ ├── GenericRunnerCommand.scala │ │ │ ├── GenericRunnerSettings.scala │ │ │ ├── Global.scala │ │ │ ├── GlobalSymbolLoaders.scala │ │ │ ├── Main.scala │ │ │ ├── MainBench.scala │ │ │ ├── MainTokenMetric.scala │ │ │ ├── NewLinePrintWriter.scala │ │ │ ├── ObjectRunner.scala │ │ │ ├── OfflineCompilerCommand.scala │ │ │ ├── Parsing.scala │ │ │ ├── PhaseAssembly.scala │ │ │ ├── Properties.scala │ │ │ ├── Reporting.scala │ │ │ ├── ScriptRunner.scala │ │ │ ├── Settings.scala │ │ │ ├── SubComponent.scala │ │ │ ├── ast │ │ │ │ ├── DocComments.scala │ │ │ │ ├── NodePrinters.scala │ │ │ │ ├── Positions.scala │ │ │ │ ├── Printers.scala │ │ │ │ ├── TreeBrowsers.scala │ │ │ │ ├── TreeDSL.scala │ │ │ │ ├── TreeGen.scala │ │ │ │ ├── TreeInfo.scala │ │ │ │ ├── Trees.scala │ │ │ │ └── parser │ │ │ │ │ ├── BracePair.scala │ │ │ │ │ ├── BracePatch.scala │ │ │ │ │ ├── Change.scala │ │ │ │ │ ├── CommonTokens.scala │ │ │ │ │ ├── MarkupParsers.scala │ │ │ │ │ ├── Parsers.scala │ │ │ │ │ ├── Patch.scala │ │ │ │ │ ├── Scanners.scala │ │ │ │ │ ├── SymbolicXMLBuilder.scala │ │ │ │ │ ├── SyntaxAnalyzer.scala │ │ │ │ │ ├── Tokens.scala │ │ │ │ │ ├── TreeBuilder.scala │ │ │ │ │ └── xml │ │ │ │ │ ├── MarkupParserCommon.scala │ │ │ │ │ └── Utility.scala │ │ │ ├── backend │ │ │ │ ├── JavaPlatform.scala │ │ │ │ ├── Platform.scala │ │ │ │ ├── ScalaPrimitives.scala │ │ │ │ └── jvm │ │ │ │ │ ├── AsmUtils.scala │ │ │ │ │ ├── BCodeBodyBuilder.scala │ │ │ │ │ ├── BCodeHelpers.scala │ │ │ │ │ ├── BCodeIdiomatic.scala │ │ │ │ │ ├── BCodeSkelBuilder.scala │ │ │ │ │ ├── BCodeSyncAndTry.scala │ │ │ │ │ ├── BTypes.scala │ │ │ │ │ ├── BTypesFromClassfile.scala │ │ │ │ │ ├── BTypesFromSymbols.scala │ │ │ │ │ ├── BackendReporting.scala │ │ │ │ │ ├── BackendStats.scala │ │ │ │ │ ├── ClassfileWriter.scala │ │ │ │ │ ├── CodeGen.scala │ │ │ │ │ ├── CoreBTypes.scala │ │ │ │ │ ├── GenBCode.scala │ │ │ │ │ ├── PerRunInit.scala │ │ │ │ │ ├── PostProcessor.scala │ │ │ │ │ ├── PostProcessorFrontendAccess.scala │ │ │ │ │ ├── analysis │ │ │ │ │ ├── AliasingFrame.scala │ │ │ │ │ ├── BackendUtils.scala │ │ │ │ │ ├── InstructionStackEffect.scala │ │ │ │ │ ├── NullnessAnalyzer.scala │ │ │ │ │ ├── ProdConsAnalyzerImpl.scala │ │ │ │ │ ├── TypeFlowInterpreter.scala │ │ │ │ │ └── package.scala │ │ │ │ │ └── opt │ │ │ │ │ ├── BoxUnbox.scala │ │ │ │ │ ├── ByteCodeRepository.scala │ │ │ │ │ ├── BytecodeUtils.scala │ │ │ │ │ ├── CallGraph.scala │ │ │ │ │ ├── ClosureOptimizer.scala │ │ │ │ │ ├── CopyProp.scala │ │ │ │ │ ├── InlineInfoAttribute.scala │ │ │ │ │ ├── Inliner.scala │ │ │ │ │ ├── InlinerHeuristics.scala │ │ │ │ │ └── LocalOpt.scala │ │ │ ├── classpath │ │ │ │ ├── AggregateClassPath.scala │ │ │ │ ├── ClassPath.scala │ │ │ │ ├── ClassPathFactory.scala │ │ │ │ ├── DirectoryClassPath.scala │ │ │ │ ├── FileUtils.scala │ │ │ │ ├── PackageNameUtils.scala │ │ │ │ ├── VirtualDirectoryClassPath.scala │ │ │ │ ├── ZipAndJarFileLookupFactory.scala │ │ │ │ └── ZipArchiveFileLookup.scala │ │ │ ├── io │ │ │ │ ├── Jar.scala │ │ │ │ ├── Socket.scala │ │ │ │ ├── SourceReader.scala │ │ │ │ └── package.scala │ │ │ ├── javac │ │ │ │ ├── JavaParsers.scala │ │ │ │ ├── JavaScanners.scala │ │ │ │ └── JavaTokens.scala │ │ │ ├── package.scala │ │ │ ├── plugins │ │ │ │ ├── Plugin.scala │ │ │ │ ├── PluginComponent.scala │ │ │ │ ├── PluginDescription.scala │ │ │ │ └── Plugins.scala │ │ │ ├── profile │ │ │ │ ├── ExtendedThreadMxBean.java │ │ │ │ ├── ExternalToolHook.java │ │ │ │ ├── InPhase.scala │ │ │ │ └── Profiler.scala │ │ │ ├── reporters │ │ │ │ ├── AbstractReporter.scala │ │ │ │ ├── ConsoleReporter.scala │ │ │ │ ├── NoReporter.scala │ │ │ │ ├── Reporter.scala │ │ │ │ └── StoreReporter.scala │ │ │ ├── settings │ │ │ │ ├── AbsScalaSettings.scala │ │ │ │ ├── AbsSettings.scala │ │ │ │ ├── FscSettings.scala │ │ │ │ ├── MutableSettings.scala │ │ │ │ ├── ScalaSettings.scala │ │ │ │ ├── ScalaVersion.scala │ │ │ │ ├── StandardScalaSettings.scala │ │ │ │ └── Warnings.scala │ │ │ ├── symtab │ │ │ │ ├── BrowsingLoaders.scala │ │ │ │ ├── SymbolLoaders.scala │ │ │ │ ├── SymbolTable.scala │ │ │ │ ├── SymbolTrackers.scala │ │ │ │ ├── classfile │ │ │ │ │ ├── AbstractFileReader.scala │ │ │ │ │ ├── ClassfileParser.scala │ │ │ │ │ ├── Pickler.scala │ │ │ │ │ └── package.scala │ │ │ │ └── package.scala │ │ │ ├── transform │ │ │ │ ├── AccessorSynthesis.scala │ │ │ │ ├── CleanUp.scala │ │ │ │ ├── Constructors.scala │ │ │ │ ├── Delambdafy.scala │ │ │ │ ├── Erasure.scala │ │ │ │ ├── ExplicitOuter.scala │ │ │ │ ├── ExtensionMethods.scala │ │ │ │ ├── Fields.scala │ │ │ │ ├── Flatten.scala │ │ │ │ ├── InfoTransform.scala │ │ │ │ ├── LambdaLift.scala │ │ │ │ ├── Mixin.scala │ │ │ │ ├── OverridingPairs.scala │ │ │ │ ├── PostErasure.scala │ │ │ │ ├── SampleTransform.scala │ │ │ │ ├── SpecializeTypes.scala │ │ │ │ ├── Statics.scala │ │ │ │ ├── TailCalls.scala │ │ │ │ ├── Transform.scala │ │ │ │ ├── TypeAdaptingTransformer.scala │ │ │ │ ├── TypingTransformers.scala │ │ │ │ ├── UnCurry.scala │ │ │ │ └── patmat │ │ │ │ │ ├── Logic.scala │ │ │ │ │ ├── MatchAnalysis.scala │ │ │ │ │ ├── MatchCodeGen.scala │ │ │ │ │ ├── MatchCps.scala │ │ │ │ │ ├── MatchOptimization.scala │ │ │ │ │ ├── MatchTranslation.scala │ │ │ │ │ ├── MatchTreeMaking.scala │ │ │ │ │ ├── MatchWarnings.scala │ │ │ │ │ ├── PatternExpansion.scala │ │ │ │ │ ├── PatternMatching.scala │ │ │ │ │ └── Solving.scala │ │ │ ├── typechecker │ │ │ │ ├── Adaptations.scala │ │ │ │ ├── Analyzer.scala │ │ │ │ ├── AnalyzerPlugins.scala │ │ │ │ ├── Checkable.scala │ │ │ │ ├── ConstantFolder.scala │ │ │ │ ├── ContextErrors.scala │ │ │ │ ├── Contexts.scala │ │ │ │ ├── DestructureTypes.scala │ │ │ │ ├── Duplicators.scala │ │ │ │ ├── EtaExpansion.scala │ │ │ │ ├── Implicits.scala │ │ │ │ ├── Infer.scala │ │ │ │ ├── Macros.scala │ │ │ │ ├── MethodSynthesis.scala │ │ │ │ ├── Namers.scala │ │ │ │ ├── NamesDefaults.scala │ │ │ │ ├── PatternTypers.scala │ │ │ │ ├── RefChecks.scala │ │ │ │ ├── StdAttachments.scala │ │ │ │ ├── SuperAccessors.scala │ │ │ │ ├── SyntheticMethods.scala │ │ │ │ ├── Tags.scala │ │ │ │ ├── TreeCheckers.scala │ │ │ │ ├── TypeDiagnostics.scala │ │ │ │ ├── TypeStrings.scala │ │ │ │ ├── Typers.scala │ │ │ │ ├── TypersTracking.scala │ │ │ │ └── Unapplies.scala │ │ │ └── util │ │ │ │ ├── CharArrayReader.scala │ │ │ │ ├── ClassPath.scala │ │ │ │ ├── DocStrings.scala │ │ │ │ ├── Exceptional.scala │ │ │ │ ├── InterruptReq.scala │ │ │ │ ├── JavaCharArrayReader.scala │ │ │ │ ├── ShowPickled.scala │ │ │ │ ├── SimpleTracer.scala │ │ │ │ ├── StackTracing.scala │ │ │ │ ├── WorkScheduler.scala │ │ │ │ └── package.scala │ │ │ ├── reflect │ │ │ ├── FastTrack.scala │ │ │ ├── FormatInterpolator.scala │ │ │ ├── FrontEnd.scala │ │ │ ├── ReflectGlobal.scala │ │ │ ├── ReflectMain.scala │ │ │ ├── ReflectSetup.scala │ │ │ ├── StdTags.scala │ │ │ ├── ToolBox.scala │ │ │ ├── ToolBoxFactory.scala │ │ │ ├── WrappedProperties.scala │ │ │ └── package.scala │ │ │ └── util │ │ │ ├── PathResolver.scala │ │ │ ├── SocketServer.scala │ │ │ └── VerifyClass.scala │ ├── eclipse │ │ ├── .gitignore │ │ ├── README.md │ │ ├── interactive │ │ │ ├── .classpath │ │ │ ├── .gitignore │ │ │ └── .project │ │ ├── partest │ │ │ ├── .classpath │ │ │ ├── .gitignore │ │ │ └── .project │ │ ├── reflect │ │ │ ├── .classpath │ │ │ ├── .gitignore │ │ │ └── .project │ │ ├── repl │ │ │ ├── .classpath │ │ │ ├── .gitignore │ │ │ └── .project │ │ ├── scala-compiler │ │ │ ├── .classpath │ │ │ ├── .gitignore │ │ │ └── .project │ │ ├── scala-library │ │ │ ├── .classpath │ │ │ ├── .gitignore │ │ │ └── .project │ │ ├── scaladoc │ │ │ ├── .classpath │ │ │ ├── .gitignore │ │ │ └── .project │ │ ├── scalap │ │ │ ├── .classpath │ │ │ ├── .gitignore │ │ │ └── .project │ │ ├── test-junit │ │ │ ├── .classpath │ │ │ ├── .gitignore │ │ │ └── .project │ │ └── update-workspace.sh │ ├── intellij │ │ ├── README.md │ │ ├── compiler.iml.SAMPLE │ │ ├── interactive.iml.SAMPLE │ │ ├── junit.iml.SAMPLE │ │ ├── library.iml.SAMPLE │ │ ├── manual.iml.SAMPLE │ │ ├── partest-extras.iml.SAMPLE │ │ ├── partest-javaagent.iml.SAMPLE │ │ ├── reflect.iml.SAMPLE │ │ ├── repl-frontend.iml.SAMPLE │ │ ├── repl.iml.SAMPLE │ │ ├── scala-build.iml.SAMPLE │ │ ├── scala.iml.SAMPLE │ │ ├── scala.ipr.SAMPLE │ │ ├── scalacheck.iml.SAMPLE │ │ ├── scaladoc.iml.SAMPLE │ │ ├── scalap.iml.SAMPLE │ │ └── test.iml.SAMPLE │ ├── interactive │ │ └── scala │ │ │ └── tools │ │ │ └── nsc │ │ │ └── interactive │ │ │ ├── CompilerControl.scala │ │ │ ├── ContextTrees.scala │ │ │ ├── Global.scala │ │ │ ├── InteractiveReporter.scala │ │ │ ├── Lexer.scala │ │ │ ├── Main.scala │ │ │ ├── Pickler.scala │ │ │ ├── Picklers.scala │ │ │ ├── PresentationCompilerThread.scala │ │ │ ├── PrettyWriter.scala │ │ │ ├── REPL.scala │ │ │ ├── RangePositions.scala │ │ │ ├── Replayer.scala │ │ │ ├── Response.scala │ │ │ ├── RichCompilationUnits.scala │ │ │ └── tests │ │ │ ├── InteractiveTest.scala │ │ │ ├── InteractiveTestSettings.scala │ │ │ ├── Tester.scala │ │ │ └── core │ │ │ ├── AskCommand.scala │ │ │ ├── CoreTestDefs.scala │ │ │ ├── PresentationCompilerInstance.scala │ │ │ ├── PresentationCompilerRequestsWorkingMode.scala │ │ │ ├── PresentationCompilerTestDef.scala │ │ │ ├── Reporter.scala │ │ │ ├── SourcesCollector.scala │ │ │ ├── TestMarker.scala │ │ │ ├── TestResources.scala │ │ │ └── TestSettings.scala │ ├── library-aux │ │ ├── README │ │ └── scala │ │ │ ├── Any.scala │ │ │ ├── AnyRef.scala │ │ │ ├── Nothing.scala │ │ │ └── Null.scala │ ├── library │ │ ├── rootdoc.txt │ │ └── scala │ │ │ ├── AnyVal.scala │ │ │ ├── AnyValCompanion.scala │ │ │ ├── App.scala │ │ │ ├── Array.scala │ │ │ ├── Boolean.scala │ │ │ ├── Byte.scala │ │ │ ├── Char.scala │ │ │ ├── Cloneable.scala │ │ │ ├── Console.scala │ │ │ ├── DelayedInit.scala │ │ │ ├── Double.scala │ │ │ ├── Dynamic.scala │ │ │ ├── Enumeration.scala │ │ │ ├── Equals.scala │ │ │ ├── Float.scala │ │ │ ├── Function.scala │ │ │ ├── Function0.scala │ │ │ ├── Function1.scala │ │ │ ├── Function10.scala │ │ │ ├── Function11.scala │ │ │ ├── Function12.scala │ │ │ ├── Function13.scala │ │ │ ├── Function14.scala │ │ │ ├── Function15.scala │ │ │ ├── Function16.scala │ │ │ ├── Function17.scala │ │ │ ├── Function18.scala │ │ │ ├── Function19.scala │ │ │ ├── Function2.scala │ │ │ ├── Function20.scala │ │ │ ├── Function21.scala │ │ │ ├── Function22.scala │ │ │ ├── Function3.scala │ │ │ ├── Function4.scala │ │ │ ├── Function5.scala │ │ │ ├── Function6.scala │ │ │ ├── Function7.scala │ │ │ ├── Function8.scala │ │ │ ├── Function9.scala │ │ │ ├── Immutable.scala │ │ │ ├── Int.scala │ │ │ ├── Long.scala │ │ │ ├── MatchError.scala │ │ │ ├── Mutable.scala │ │ │ ├── NotImplementedError.scala │ │ │ ├── Option.scala │ │ │ ├── PartialFunction.scala │ │ │ ├── Predef.scala │ │ │ ├── Product.scala │ │ │ ├── Product1.scala │ │ │ ├── Product10.scala │ │ │ ├── Product11.scala │ │ │ ├── Product12.scala │ │ │ ├── Product13.scala │ │ │ ├── Product14.scala │ │ │ ├── Product15.scala │ │ │ ├── Product16.scala │ │ │ ├── Product17.scala │ │ │ ├── Product18.scala │ │ │ ├── Product19.scala │ │ │ ├── Product2.scala │ │ │ ├── Product20.scala │ │ │ ├── Product21.scala │ │ │ ├── Product22.scala │ │ │ ├── Product3.scala │ │ │ ├── Product4.scala │ │ │ ├── Product5.scala │ │ │ ├── Product6.scala │ │ │ ├── Product7.scala │ │ │ ├── Product8.scala │ │ │ ├── Product9.scala │ │ │ ├── Proxy.scala │ │ │ ├── SerialVersionUID.scala │ │ │ ├── Serializable.scala │ │ │ ├── Short.scala │ │ │ ├── Specializable.scala │ │ │ ├── StringContext.scala │ │ │ ├── Symbol.scala │ │ │ ├── Tuple1.scala │ │ │ ├── Tuple10.scala │ │ │ ├── Tuple11.scala │ │ │ ├── Tuple12.scala │ │ │ ├── Tuple13.scala │ │ │ ├── Tuple14.scala │ │ │ ├── Tuple15.scala │ │ │ ├── Tuple16.scala │ │ │ ├── Tuple17.scala │ │ │ ├── Tuple18.scala │ │ │ ├── Tuple19.scala │ │ │ ├── Tuple2.scala │ │ │ ├── Tuple20.scala │ │ │ ├── Tuple21.scala │ │ │ ├── Tuple22.scala │ │ │ ├── Tuple3.scala │ │ │ ├── Tuple4.scala │ │ │ ├── Tuple5.scala │ │ │ ├── Tuple6.scala │ │ │ ├── Tuple7.scala │ │ │ ├── Tuple8.scala │ │ │ ├── Tuple9.scala │ │ │ ├── UninitializedError.scala │ │ │ ├── UninitializedFieldError.scala │ │ │ ├── Unit.scala │ │ │ ├── annotation │ │ │ ├── Annotation.scala │ │ │ ├── ClassfileAnnotation.scala │ │ │ ├── StaticAnnotation.scala │ │ │ ├── TypeConstraint.scala │ │ │ ├── bridge.scala │ │ │ ├── compileTimeOnly.scala │ │ │ ├── elidable.scala │ │ │ ├── implicitAmbiguous.scala │ │ │ ├── implicitNotFound.scala │ │ │ ├── meta │ │ │ │ ├── beanGetter.scala │ │ │ │ ├── beanSetter.scala │ │ │ │ ├── companionClass.scala │ │ │ │ ├── companionMethod.scala │ │ │ │ ├── companionObject.scala │ │ │ │ ├── field.scala │ │ │ │ ├── getter.scala │ │ │ │ ├── languageFeature.scala │ │ │ │ ├── package.scala │ │ │ │ ├── param.scala │ │ │ │ └── setter.scala │ │ │ ├── migration.scala │ │ │ ├── showAsInfix.scala │ │ │ ├── strictfp.scala │ │ │ ├── switch.scala │ │ │ ├── tailrec.scala │ │ │ ├── unchecked │ │ │ │ ├── uncheckedStable.scala │ │ │ │ └── uncheckedVariance.scala │ │ │ ├── unspecialized.scala │ │ │ └── varargs.scala │ │ │ ├── beans │ │ │ ├── BeanDescription.scala │ │ │ ├── BeanDisplayName.scala │ │ │ ├── BeanInfo.scala │ │ │ ├── BeanInfoSkip.scala │ │ │ ├── BeanProperty.scala │ │ │ ├── BooleanBeanProperty.scala │ │ │ └── ScalaBeanInfo.scala │ │ │ ├── collection │ │ │ ├── BitSet.scala │ │ │ ├── BitSetLike.scala │ │ │ ├── BufferedIterator.scala │ │ │ ├── DefaultMap.scala │ │ │ ├── GenIterable.scala │ │ │ ├── GenIterableLike.scala │ │ │ ├── GenMap.scala │ │ │ ├── GenMapLike.scala │ │ │ ├── GenSeq.scala │ │ │ ├── GenSeqLike.scala │ │ │ ├── GenSet.scala │ │ │ ├── GenSetLike.scala │ │ │ ├── GenTraversable.scala │ │ │ ├── GenTraversableLike.scala │ │ │ ├── GenTraversableOnce.scala │ │ │ ├── IndexedSeq.scala │ │ │ ├── IndexedSeqLike.scala │ │ │ ├── IndexedSeqOptimized.scala │ │ │ ├── Iterable.scala │ │ │ ├── IterableLike.scala │ │ │ ├── IterableProxy.scala │ │ │ ├── IterableProxyLike.scala │ │ │ ├── IterableView.scala │ │ │ ├── IterableViewLike.scala │ │ │ ├── Iterator.scala │ │ │ ├── JavaConversions.scala │ │ │ ├── JavaConverters.scala │ │ │ ├── LinearSeq.scala │ │ │ ├── LinearSeqLike.scala │ │ │ ├── LinearSeqOptimized.scala │ │ │ ├── Map.scala │ │ │ ├── MapLike.scala │ │ │ ├── MapProxy.scala │ │ │ ├── MapProxyLike.scala │ │ │ ├── Parallel.scala │ │ │ ├── Searching.scala │ │ │ ├── Seq.scala │ │ │ ├── SeqExtractors.scala │ │ │ ├── SeqLike.scala │ │ │ ├── SeqProxy.scala │ │ │ ├── SeqProxyLike.scala │ │ │ ├── SeqView.scala │ │ │ ├── SeqViewLike.scala │ │ │ ├── Set.scala │ │ │ ├── SetLike.scala │ │ │ ├── SetProxy.scala │ │ │ ├── SetProxyLike.scala │ │ │ ├── SortedMap.scala │ │ │ ├── SortedMapLike.scala │ │ │ ├── SortedSet.scala │ │ │ ├── SortedSetLike.scala │ │ │ ├── Traversable.scala │ │ │ ├── TraversableLike.scala │ │ │ ├── TraversableOnce.scala │ │ │ ├── TraversableProxy.scala │ │ │ ├── TraversableProxyLike.scala │ │ │ ├── TraversableView.scala │ │ │ ├── TraversableViewLike.scala │ │ │ ├── concurrent │ │ │ │ ├── BasicNode.java │ │ │ │ ├── CNodeBase.java │ │ │ │ ├── Gen.java │ │ │ │ ├── INodeBase.java │ │ │ │ ├── MainNode.java │ │ │ │ ├── Map.scala │ │ │ │ └── TrieMap.scala │ │ │ ├── convert │ │ │ │ ├── AsJavaConverters.scala │ │ │ │ ├── AsScalaConverters.scala │ │ │ │ ├── DecorateAsJava.scala │ │ │ │ ├── DecorateAsScala.scala │ │ │ │ ├── Decorators.scala │ │ │ │ ├── ImplicitConversions.scala │ │ │ │ ├── WrapAsJava.scala │ │ │ │ ├── WrapAsScala.scala │ │ │ │ ├── Wrappers.scala │ │ │ │ └── package.scala │ │ │ ├── generic │ │ │ │ ├── BitOperations.scala │ │ │ │ ├── BitSetFactory.scala │ │ │ │ ├── CanBuildFrom.scala │ │ │ │ ├── ClassTagTraversableFactory.scala │ │ │ │ ├── Clearable.scala │ │ │ │ ├── FilterMonadic.scala │ │ │ │ ├── GenMapFactory.scala │ │ │ │ ├── GenSeqFactory.scala │ │ │ │ ├── GenSetFactory.scala │ │ │ │ ├── GenTraversableFactory.scala │ │ │ │ ├── GenericClassTagCompanion.scala │ │ │ │ ├── GenericClassTagTraversableTemplate.scala │ │ │ │ ├── GenericCompanion.scala │ │ │ │ ├── GenericOrderedCompanion.scala │ │ │ │ ├── GenericOrderedTraversableTemplate.scala │ │ │ │ ├── GenericSeqCompanion.scala │ │ │ │ ├── GenericSetTemplate.scala │ │ │ │ ├── GenericTraversableTemplate.scala │ │ │ │ ├── Growable.scala │ │ │ │ ├── HasNewBuilder.scala │ │ │ │ ├── ImmutableMapFactory.scala │ │ │ │ ├── ImmutableSetFactory.scala │ │ │ │ ├── ImmutableSortedMapFactory.scala │ │ │ │ ├── ImmutableSortedSetFactory.scala │ │ │ │ ├── IndexedSeqFactory.scala │ │ │ │ ├── IsSeqLike.scala │ │ │ │ ├── IsTraversableLike.scala │ │ │ │ ├── IsTraversableOnce.scala │ │ │ │ ├── IterableForwarder.scala │ │ │ │ ├── MapFactory.scala │ │ │ │ ├── MutableMapFactory.scala │ │ │ │ ├── MutableSetFactory.scala │ │ │ │ ├── MutableSortedMapFactory.scala │ │ │ │ ├── MutableSortedSetFactory.scala │ │ │ │ ├── OrderedTraversableFactory.scala │ │ │ │ ├── SeqFactory.scala │ │ │ │ ├── SeqForwarder.scala │ │ │ │ ├── SetFactory.scala │ │ │ │ ├── Shrinkable.scala │ │ │ │ ├── Signalling.scala │ │ │ │ ├── Sizing.scala │ │ │ │ ├── SliceInterval.scala │ │ │ │ ├── Sorted.scala │ │ │ │ ├── SortedMapFactory.scala │ │ │ │ ├── SortedSetFactory.scala │ │ │ │ ├── Subtractable.scala │ │ │ │ ├── TraversableFactory.scala │ │ │ │ ├── TraversableForwarder.scala │ │ │ │ └── package.scala │ │ │ ├── immutable │ │ │ │ ├── BitSet.scala │ │ │ │ ├── DefaultMap.scala │ │ │ │ ├── HashMap.scala │ │ │ │ ├── HashSet.scala │ │ │ │ ├── IndexedSeq.scala │ │ │ │ ├── IntMap.scala │ │ │ │ ├── Iterable.scala │ │ │ │ ├── LinearSeq.scala │ │ │ │ ├── List.scala │ │ │ │ ├── ListMap.scala │ │ │ │ ├── ListSet.scala │ │ │ │ ├── LongMap.scala │ │ │ │ ├── Map.scala │ │ │ │ ├── MapLike.scala │ │ │ │ ├── MapProxy.scala │ │ │ │ ├── NumericRange.scala │ │ │ │ ├── PagedSeq.scala │ │ │ │ ├── Queue.scala │ │ │ │ ├── Range.scala │ │ │ │ ├── RedBlackTree.scala │ │ │ │ ├── Seq.scala │ │ │ │ ├── Set.scala │ │ │ │ ├── SetProxy.scala │ │ │ │ ├── SortedMap.scala │ │ │ │ ├── SortedSet.scala │ │ │ │ ├── Stack.scala │ │ │ │ ├── Stream.scala │ │ │ │ ├── StreamView.scala │ │ │ │ ├── StreamViewLike.scala │ │ │ │ ├── StringLike.scala │ │ │ │ ├── StringOps.scala │ │ │ │ ├── Traversable.scala │ │ │ │ ├── TreeMap.scala │ │ │ │ ├── TreeSet.scala │ │ │ │ ├── TrieIterator.scala │ │ │ │ ├── Vector.scala │ │ │ │ └── WrappedString.scala │ │ │ ├── mutable │ │ │ │ ├── AnyRefMap.scala │ │ │ │ ├── ArrayBuffer.scala │ │ │ │ ├── ArrayBuilder.scala │ │ │ │ ├── ArrayLike.scala │ │ │ │ ├── ArrayOps.scala │ │ │ │ ├── ArraySeq.scala │ │ │ │ ├── ArrayStack.scala │ │ │ │ ├── BitSet.scala │ │ │ │ ├── Buffer.scala │ │ │ │ ├── BufferLike.scala │ │ │ │ ├── BufferProxy.scala │ │ │ │ ├── Builder.scala │ │ │ │ ├── Cloneable.scala │ │ │ │ ├── DefaultEntry.scala │ │ │ │ ├── DefaultMapModel.scala │ │ │ │ ├── DoubleLinkedList.scala │ │ │ │ ├── DoubleLinkedListLike.scala │ │ │ │ ├── FlatHashTable.scala │ │ │ │ ├── GrowingBuilder.scala │ │ │ │ ├── HashEntry.scala │ │ │ │ ├── HashMap.scala │ │ │ │ ├── HashSet.scala │ │ │ │ ├── HashTable.scala │ │ │ │ ├── History.scala │ │ │ │ ├── ImmutableMapAdaptor.scala │ │ │ │ ├── ImmutableSetAdaptor.scala │ │ │ │ ├── IndexedSeq.scala │ │ │ │ ├── IndexedSeqLike.scala │ │ │ │ ├── IndexedSeqOptimized.scala │ │ │ │ ├── IndexedSeqView.scala │ │ │ │ ├── Iterable.scala │ │ │ │ ├── LazyBuilder.scala │ │ │ │ ├── LinearSeq.scala │ │ │ │ ├── LinkedEntry.scala │ │ │ │ ├── LinkedHashMap.scala │ │ │ │ ├── LinkedHashSet.scala │ │ │ │ ├── LinkedList.scala │ │ │ │ ├── LinkedListLike.scala │ │ │ │ ├── ListBuffer.scala │ │ │ │ ├── ListMap.scala │ │ │ │ ├── LongMap.scala │ │ │ │ ├── Map.scala │ │ │ │ ├── MapBuilder.scala │ │ │ │ ├── MapLike.scala │ │ │ │ ├── MapProxy.scala │ │ │ │ ├── MultiMap.scala │ │ │ │ ├── MutableList.scala │ │ │ │ ├── ObservableBuffer.scala │ │ │ │ ├── ObservableMap.scala │ │ │ │ ├── ObservableSet.scala │ │ │ │ ├── OpenHashMap.scala │ │ │ │ ├── PriorityQueue.scala │ │ │ │ ├── Publisher.scala │ │ │ │ ├── Queue.scala │ │ │ │ ├── QueueProxy.scala │ │ │ │ ├── RedBlackTree.scala │ │ │ │ ├── ResizableArray.scala │ │ │ │ ├── ReusableBuilder.scala │ │ │ │ ├── RevertibleHistory.scala │ │ │ │ ├── Seq.scala │ │ │ │ ├── SeqLike.scala │ │ │ │ ├── Set.scala │ │ │ │ ├── SetBuilder.scala │ │ │ │ ├── SetLike.scala │ │ │ │ ├── SetProxy.scala │ │ │ │ ├── SortedMap.scala │ │ │ │ ├── SortedSet.scala │ │ │ │ ├── Stack.scala │ │ │ │ ├── StackProxy.scala │ │ │ │ ├── StringBuilder.scala │ │ │ │ ├── Subscriber.scala │ │ │ │ ├── SynchronizedBuffer.scala │ │ │ │ ├── SynchronizedMap.scala │ │ │ │ ├── SynchronizedQueue.scala │ │ │ │ ├── SynchronizedSet.scala │ │ │ │ ├── SynchronizedStack.scala │ │ │ │ ├── Traversable.scala │ │ │ │ ├── TreeMap.scala │ │ │ │ ├── TreeSet.scala │ │ │ │ ├── Undoable.scala │ │ │ │ ├── UnrolledBuffer.scala │ │ │ │ ├── WeakHashMap.scala │ │ │ │ ├── WrappedArray.scala │ │ │ │ └── WrappedArrayBuilder.scala │ │ │ ├── package.scala │ │ │ ├── readme-if-you-want-to-add-something.txt │ │ │ └── script │ │ │ │ ├── Location.scala │ │ │ │ ├── Message.scala │ │ │ │ └── Scriptable.scala │ │ │ ├── compat │ │ │ └── Platform.scala │ │ │ ├── concurrent │ │ │ ├── Awaitable.scala │ │ │ ├── BatchingExecutor.scala │ │ │ ├── BlockContext.scala │ │ │ ├── Channel.scala │ │ │ ├── DelayedLazyVal.scala │ │ │ ├── ExecutionContext.scala │ │ │ ├── Future.scala │ │ │ ├── JavaConversions.scala │ │ │ ├── Lock.scala │ │ │ ├── Promise.scala │ │ │ ├── SyncChannel.scala │ │ │ ├── SyncVar.scala │ │ │ ├── duration │ │ │ │ ├── Deadline.scala │ │ │ │ ├── Duration.scala │ │ │ │ ├── DurationConversions.scala │ │ │ │ └── package.scala │ │ │ ├── forkjoin │ │ │ │ └── package.scala │ │ │ ├── impl │ │ │ │ ├── ExecutionContextImpl.scala │ │ │ │ └── Promise.scala │ │ │ └── package.scala │ │ │ ├── deprecated.scala │ │ │ ├── deprecatedInheritance.scala │ │ │ ├── deprecatedName.scala │ │ │ ├── deprecatedOverriding.scala │ │ │ ├── inline.scala │ │ │ ├── io │ │ │ ├── AnsiColor.scala │ │ │ ├── BufferedSource.scala │ │ │ ├── Codec.scala │ │ │ ├── Position.scala │ │ │ ├── Source.scala │ │ │ └── StdIn.scala │ │ │ ├── language.scala │ │ │ ├── languageFeature.scala │ │ │ ├── math │ │ │ ├── BigDecimal.scala │ │ │ ├── BigInt.scala │ │ │ ├── Equiv.scala │ │ │ ├── Fractional.scala │ │ │ ├── Integral.scala │ │ │ ├── Numeric.scala │ │ │ ├── Ordered.scala │ │ │ ├── Ordering.scala │ │ │ ├── PartialOrdering.scala │ │ │ ├── PartiallyOrdered.scala │ │ │ ├── ScalaNumber.java │ │ │ ├── ScalaNumericConversions.scala │ │ │ └── package.scala │ │ │ ├── native.scala │ │ │ ├── noinline.scala │ │ │ ├── package.scala │ │ │ ├── ref │ │ │ ├── PhantomReference.scala │ │ │ ├── Reference.scala │ │ │ ├── ReferenceQueue.scala │ │ │ ├── ReferenceWrapper.scala │ │ │ ├── SoftReference.scala │ │ │ └── WeakReference.scala │ │ │ ├── reflect │ │ │ ├── ClassManifestDeprecatedApis.scala │ │ │ ├── ClassTag.scala │ │ │ ├── Manifest.scala │ │ │ ├── NameTransformer.scala │ │ │ ├── NoManifest.scala │ │ │ ├── OptManifest.scala │ │ │ ├── ScalaLongSignature.java │ │ │ ├── ScalaSignature.java │ │ │ ├── macros │ │ │ │ └── internal │ │ │ │ │ └── macroImpl.scala │ │ │ └── package.scala │ │ │ ├── remote.scala │ │ │ ├── runtime │ │ │ ├── AbstractFunction0.scala │ │ │ ├── AbstractFunction1.scala │ │ │ ├── AbstractFunction10.scala │ │ │ ├── AbstractFunction11.scala │ │ │ ├── AbstractFunction12.scala │ │ │ ├── AbstractFunction13.scala │ │ │ ├── AbstractFunction14.scala │ │ │ ├── AbstractFunction15.scala │ │ │ ├── AbstractFunction16.scala │ │ │ ├── AbstractFunction17.scala │ │ │ ├── AbstractFunction18.scala │ │ │ ├── AbstractFunction19.scala │ │ │ ├── AbstractFunction2.scala │ │ │ ├── AbstractFunction20.scala │ │ │ ├── AbstractFunction21.scala │ │ │ ├── AbstractFunction22.scala │ │ │ ├── AbstractFunction3.scala │ │ │ ├── AbstractFunction4.scala │ │ │ ├── AbstractFunction5.scala │ │ │ ├── AbstractFunction6.scala │ │ │ ├── AbstractFunction7.scala │ │ │ ├── AbstractFunction8.scala │ │ │ ├── AbstractFunction9.scala │ │ │ ├── AbstractPartialFunction.scala │ │ │ ├── ArrayCharSequence.scala │ │ │ ├── BooleanRef.java │ │ │ ├── BoxedUnit.java │ │ │ ├── BoxesRunTime.java │ │ │ ├── ByteRef.java │ │ │ ├── CharRef.java │ │ │ ├── DoubleRef.java │ │ │ ├── FloatRef.java │ │ │ ├── IntRef.java │ │ │ ├── LambdaDeserialize.java │ │ │ ├── LambdaDeserializer.scala │ │ │ ├── LazyRef.scala │ │ │ ├── LongRef.java │ │ │ ├── MethodCache.scala │ │ │ ├── NonLocalReturnControl.scala │ │ │ ├── Nothing$.scala │ │ │ ├── Null$.scala │ │ │ ├── ObjectRef.java │ │ │ ├── RichBoolean.scala │ │ │ ├── RichByte.scala │ │ │ ├── RichChar.scala │ │ │ ├── RichDouble.scala │ │ │ ├── RichFloat.scala │ │ │ ├── RichInt.scala │ │ │ ├── RichLong.scala │ │ │ ├── RichShort.scala │ │ │ ├── ScalaNumberProxy.scala │ │ │ ├── ScalaRunTime.scala │ │ │ ├── ShortRef.java │ │ │ ├── Statics.java │ │ │ ├── StringAdd.scala │ │ │ ├── StructuralCallSite.java │ │ │ ├── SymbolLiteral.java │ │ │ ├── TraitSetter.java │ │ │ ├── Tuple2Zipped.scala │ │ │ ├── Tuple3Zipped.scala │ │ │ ├── VolatileBooleanRef.java │ │ │ ├── VolatileByteRef.java │ │ │ ├── VolatileCharRef.java │ │ │ ├── VolatileDoubleRef.java │ │ │ ├── VolatileFloatRef.java │ │ │ ├── VolatileIntRef.java │ │ │ ├── VolatileLongRef.java │ │ │ ├── VolatileObjectRef.java │ │ │ ├── VolatileShortRef.java │ │ │ ├── java8 │ │ │ │ ├── JFunction0$mcB$sp.java │ │ │ │ ├── JFunction0$mcC$sp.java │ │ │ │ ├── JFunction0$mcD$sp.java │ │ │ │ ├── JFunction0$mcF$sp.java │ │ │ │ ├── JFunction0$mcI$sp.java │ │ │ │ ├── JFunction0$mcJ$sp.java │ │ │ │ ├── JFunction0$mcS$sp.java │ │ │ │ ├── JFunction0$mcV$sp.java │ │ │ │ ├── JFunction0$mcZ$sp.java │ │ │ │ ├── JFunction1$mcDD$sp.java │ │ │ │ ├── JFunction1$mcDF$sp.java │ │ │ │ ├── JFunction1$mcDI$sp.java │ │ │ │ ├── JFunction1$mcDJ$sp.java │ │ │ │ ├── JFunction1$mcFD$sp.java │ │ │ │ ├── JFunction1$mcFF$sp.java │ │ │ │ ├── JFunction1$mcFI$sp.java │ │ │ │ ├── JFunction1$mcFJ$sp.java │ │ │ │ ├── JFunction1$mcID$sp.java │ │ │ │ ├── JFunction1$mcIF$sp.java │ │ │ │ ├── JFunction1$mcII$sp.java │ │ │ │ ├── JFunction1$mcIJ$sp.java │ │ │ │ ├── JFunction1$mcJD$sp.java │ │ │ │ ├── JFunction1$mcJF$sp.java │ │ │ │ ├── JFunction1$mcJI$sp.java │ │ │ │ ├── JFunction1$mcJJ$sp.java │ │ │ │ ├── JFunction1$mcVD$sp.java │ │ │ │ ├── JFunction1$mcVF$sp.java │ │ │ │ ├── JFunction1$mcVI$sp.java │ │ │ │ ├── JFunction1$mcVJ$sp.java │ │ │ │ ├── JFunction1$mcZD$sp.java │ │ │ │ ├── JFunction1$mcZF$sp.java │ │ │ │ ├── JFunction1$mcZI$sp.java │ │ │ │ ├── JFunction1$mcZJ$sp.java │ │ │ │ ├── JFunction2$mcDDD$sp.java │ │ │ │ ├── JFunction2$mcDDI$sp.java │ │ │ │ ├── JFunction2$mcDDJ$sp.java │ │ │ │ ├── JFunction2$mcDID$sp.java │ │ │ │ ├── JFunction2$mcDII$sp.java │ │ │ │ ├── JFunction2$mcDIJ$sp.java │ │ │ │ ├── JFunction2$mcDJD$sp.java │ │ │ │ ├── JFunction2$mcDJI$sp.java │ │ │ │ ├── JFunction2$mcDJJ$sp.java │ │ │ │ ├── JFunction2$mcFDD$sp.java │ │ │ │ ├── JFunction2$mcFDI$sp.java │ │ │ │ ├── JFunction2$mcFDJ$sp.java │ │ │ │ ├── JFunction2$mcFID$sp.java │ │ │ │ ├── JFunction2$mcFII$sp.java │ │ │ │ ├── JFunction2$mcFIJ$sp.java │ │ │ │ ├── JFunction2$mcFJD$sp.java │ │ │ │ ├── JFunction2$mcFJI$sp.java │ │ │ │ ├── JFunction2$mcFJJ$sp.java │ │ │ │ ├── JFunction2$mcIDD$sp.java │ │ │ │ ├── JFunction2$mcIDI$sp.java │ │ │ │ ├── JFunction2$mcIDJ$sp.java │ │ │ │ ├── JFunction2$mcIID$sp.java │ │ │ │ ├── JFunction2$mcIII$sp.java │ │ │ │ ├── JFunction2$mcIIJ$sp.java │ │ │ │ ├── JFunction2$mcIJD$sp.java │ │ │ │ ├── JFunction2$mcIJI$sp.java │ │ │ │ ├── JFunction2$mcIJJ$sp.java │ │ │ │ ├── JFunction2$mcJDD$sp.java │ │ │ │ ├── JFunction2$mcJDI$sp.java │ │ │ │ ├── JFunction2$mcJDJ$sp.java │ │ │ │ ├── JFunction2$mcJID$sp.java │ │ │ │ ├── JFunction2$mcJII$sp.java │ │ │ │ ├── JFunction2$mcJIJ$sp.java │ │ │ │ ├── JFunction2$mcJJD$sp.java │ │ │ │ ├── JFunction2$mcJJI$sp.java │ │ │ │ ├── JFunction2$mcJJJ$sp.java │ │ │ │ ├── JFunction2$mcVDD$sp.java │ │ │ │ ├── JFunction2$mcVDI$sp.java │ │ │ │ ├── JFunction2$mcVDJ$sp.java │ │ │ │ ├── JFunction2$mcVID$sp.java │ │ │ │ ├── JFunction2$mcVII$sp.java │ │ │ │ ├── JFunction2$mcVIJ$sp.java │ │ │ │ ├── JFunction2$mcVJD$sp.java │ │ │ │ ├── JFunction2$mcVJI$sp.java │ │ │ │ ├── JFunction2$mcVJJ$sp.java │ │ │ │ ├── JFunction2$mcZDD$sp.java │ │ │ │ ├── JFunction2$mcZDI$sp.java │ │ │ │ ├── JFunction2$mcZDJ$sp.java │ │ │ │ ├── JFunction2$mcZID$sp.java │ │ │ │ ├── JFunction2$mcZII$sp.java │ │ │ │ ├── JFunction2$mcZIJ$sp.java │ │ │ │ ├── JFunction2$mcZJD$sp.java │ │ │ │ ├── JFunction2$mcZJI$sp.java │ │ │ │ └── JFunction2$mcZJJ$sp.java │ │ │ └── package.scala │ │ │ ├── specialized.scala │ │ │ ├── sys │ │ │ ├── BooleanProp.scala │ │ │ ├── Prop.scala │ │ │ ├── PropImpl.scala │ │ │ ├── ShutdownHookThread.scala │ │ │ ├── SystemProperties.scala │ │ │ ├── package.scala │ │ │ └── process │ │ │ │ ├── BasicIO.scala │ │ │ │ ├── Process.scala │ │ │ │ ├── ProcessBuilder.scala │ │ │ │ ├── ProcessBuilderImpl.scala │ │ │ │ ├── ProcessIO.scala │ │ │ │ ├── ProcessImpl.scala │ │ │ │ ├── ProcessLogger.scala │ │ │ │ └── package.scala │ │ │ ├── text │ │ │ └── Document.scala │ │ │ ├── throws.scala │ │ │ ├── transient.scala │ │ │ ├── unchecked.scala │ │ │ ├── util │ │ │ ├── DynamicVariable.scala │ │ │ ├── Either.scala │ │ │ ├── MurmurHash.scala │ │ │ ├── Properties.scala │ │ │ ├── Random.scala │ │ │ ├── Sorting.scala │ │ │ ├── Try.scala │ │ │ ├── control │ │ │ │ ├── Breaks.scala │ │ │ │ ├── ControlThrowable.scala │ │ │ │ ├── Exception.scala │ │ │ │ ├── NoStackTrace.scala │ │ │ │ ├── NonFatal.scala │ │ │ │ └── TailCalls.scala │ │ │ ├── hashing │ │ │ │ ├── ByteswapHashing.scala │ │ │ │ ├── Hashing.scala │ │ │ │ ├── MurmurHash3.scala │ │ │ │ └── package.scala │ │ │ └── matching │ │ │ │ └── Regex.scala │ │ │ └── volatile.scala │ ├── manual │ │ └── scala │ │ │ ├── man1 │ │ │ ├── Command.scala │ │ │ ├── fsc.scala │ │ │ ├── scala.scala │ │ │ ├── scalac.scala │ │ │ ├── scaladoc.scala │ │ │ └── scalap.scala │ │ │ └── tools │ │ │ └── docutil │ │ │ ├── EmitHtml.scala │ │ │ ├── EmitManPage.scala │ │ │ ├── ManMaker.scala │ │ │ ├── ManPage.scala │ │ │ └── resources │ │ │ ├── css │ │ │ └── style.css │ │ │ ├── images │ │ │ ├── external.gif │ │ │ └── scala_logo.png │ │ │ └── index.html │ ├── partest-extras │ │ └── scala │ │ │ └── tools │ │ │ └── partest │ │ │ ├── ASMConverters.scala │ │ │ ├── AsmNode.scala │ │ │ ├── BytecodeTest.scala │ │ │ ├── IcodeComparison.scala │ │ │ ├── JavapTest.scala │ │ │ ├── ParserTest.scala │ │ │ ├── ReplTest.scala │ │ │ ├── ScaladocJavaModelTest.scala │ │ │ ├── ScaladocModelTest.scala │ │ │ ├── ScriptTest.scala │ │ │ ├── SigTest.scala │ │ │ ├── StubErrorMessageTest.scala │ │ │ ├── Util.scala │ │ │ └── instrumented │ │ │ ├── Instrumentation.scala │ │ │ └── Profiler.java │ ├── partest-javaagent │ │ └── scala │ │ │ └── tools │ │ │ └── partest │ │ │ └── javaagent │ │ │ ├── ASMTransformer.java │ │ │ ├── MANIFEST.MF │ │ │ ├── ProfilerVisitor.java │ │ │ └── ProfilingAgent.java │ ├── reflect │ │ ├── mima-filters │ │ │ ├── 2.13.0.backwards.excludes │ │ │ └── 2.13.0.forwards.excludes │ │ └── scala │ │ │ └── reflect │ │ │ ├── api │ │ │ ├── Annotations.scala │ │ │ ├── Constants.scala │ │ │ ├── Exprs.scala │ │ │ ├── FlagSets.scala │ │ │ ├── ImplicitTags.scala │ │ │ ├── Internals.scala │ │ │ ├── JavaUniverse.scala │ │ │ ├── Liftables.scala │ │ │ ├── Mirror.scala │ │ │ ├── Mirrors.scala │ │ │ ├── Names.scala │ │ │ ├── Position.scala │ │ │ ├── Positions.scala │ │ │ ├── Printers.scala │ │ │ ├── Quasiquotes.scala │ │ │ ├── Scopes.scala │ │ │ ├── StandardDefinitions.scala │ │ │ ├── StandardLiftables.scala │ │ │ ├── StandardNames.scala │ │ │ ├── Symbols.scala │ │ │ ├── TreeCreator.scala │ │ │ ├── Trees.scala │ │ │ ├── TypeCreator.scala │ │ │ ├── TypeTags.scala │ │ │ ├── Types.scala │ │ │ ├── Universe.scala │ │ │ └── package.scala │ │ │ ├── internal │ │ │ ├── AnnotationCheckers.scala │ │ │ ├── AnnotationInfos.scala │ │ │ ├── BaseTypeSeqs.scala │ │ │ ├── CapturedVariables.scala │ │ │ ├── Chars.scala │ │ │ ├── ClassfileConstants.scala │ │ │ ├── Constants.scala │ │ │ ├── Definitions.scala │ │ │ ├── Depth.scala │ │ │ ├── ExistentialsAndSkolems.scala │ │ │ ├── FatalError.scala │ │ │ ├── FlagSets.scala │ │ │ ├── Flags.scala │ │ │ ├── FreshNames.scala │ │ │ ├── HasFlags.scala │ │ │ ├── Importers.scala │ │ │ ├── InfoTransformers.scala │ │ │ ├── Internals.scala │ │ │ ├── JMethodOrConstructor.scala │ │ │ ├── JavaAccFlags.scala │ │ │ ├── Kinds.scala │ │ │ ├── Mirrors.scala │ │ │ ├── MissingRequirementError.scala │ │ │ ├── Mode.scala │ │ │ ├── Names.scala │ │ │ ├── Phase.scala │ │ │ ├── Positions.scala │ │ │ ├── Precedence.scala │ │ │ ├── Printers.scala │ │ │ ├── PrivateWithin.scala │ │ │ ├── ReificationSupport.scala │ │ │ ├── Reporting.scala │ │ │ ├── Required.scala │ │ │ ├── Scopes.scala │ │ │ ├── StdAttachments.scala │ │ │ ├── StdCreators.scala │ │ │ ├── StdNames.scala │ │ │ ├── SymbolPairs.scala │ │ │ ├── SymbolTable.scala │ │ │ ├── Symbols.scala │ │ │ ├── TreeGen.scala │ │ │ ├── TreeInfo.scala │ │ │ ├── Trees.scala │ │ │ ├── TypeDebugging.scala │ │ │ ├── Types.scala │ │ │ ├── Variance.scala │ │ │ ├── Variances.scala │ │ │ ├── annotations │ │ │ │ ├── package.scala │ │ │ │ └── uncheckedBounds.scala │ │ │ ├── pickling │ │ │ │ ├── ByteCodecs.scala │ │ │ │ ├── PickleBuffer.scala │ │ │ │ ├── PickleFormat.scala │ │ │ │ ├── Translations.scala │ │ │ │ └── UnPickler.scala │ │ │ ├── settings │ │ │ │ ├── AbsSettings.scala │ │ │ │ └── MutableSettings.scala │ │ │ ├── tpe │ │ │ │ ├── CommonOwners.scala │ │ │ │ ├── FindMembers.scala │ │ │ │ ├── GlbLubs.scala │ │ │ │ ├── TypeComparers.scala │ │ │ │ ├── TypeConstraints.scala │ │ │ │ ├── TypeMaps.scala │ │ │ │ └── TypeToStrings.scala │ │ │ ├── transform │ │ │ │ ├── Erasure.scala │ │ │ │ ├── PostErasure.scala │ │ │ │ ├── Transforms.scala │ │ │ │ └── UnCurry.scala │ │ │ └── util │ │ │ │ ├── AbstractFileClassLoader.scala │ │ │ │ ├── AlmostFinalValue.java │ │ │ │ ├── BooleanContainer.java │ │ │ │ ├── Collections.scala │ │ │ │ ├── FreshNameCreator.scala │ │ │ │ ├── HashSet.scala │ │ │ │ ├── Origins.scala │ │ │ │ ├── OwnerOnlyChmod.scala │ │ │ │ ├── Position.scala │ │ │ │ ├── ScalaClassLoader.scala │ │ │ │ ├── Set.scala │ │ │ │ ├── SourceFile.scala │ │ │ │ ├── Statistics.scala │ │ │ │ ├── StatisticsStatics.java │ │ │ │ ├── StringOps.scala │ │ │ │ ├── StripMarginInterpolator.scala │ │ │ │ ├── TableDef.scala │ │ │ │ ├── ThreeValues.scala │ │ │ │ ├── TraceSymbolActivity.scala │ │ │ │ ├── TriState.scala │ │ │ │ ├── WeakHashSet.scala │ │ │ │ └── package.scala │ │ │ ├── io │ │ │ ├── AbstractFile.scala │ │ │ ├── Directory.scala │ │ │ ├── File.scala │ │ │ ├── FileOperationException.scala │ │ │ ├── IOStats.scala │ │ │ ├── NoAbstractFile.scala │ │ │ ├── Path.scala │ │ │ ├── PlainFile.scala │ │ │ ├── Streamable.scala │ │ │ ├── VirtualDirectory.scala │ │ │ ├── VirtualFile.scala │ │ │ └── ZipArchive.scala │ │ │ ├── macros │ │ │ ├── Aliases.scala │ │ │ ├── Attachments.scala │ │ │ ├── Enclosures.scala │ │ │ ├── Evals.scala │ │ │ ├── ExprUtils.scala │ │ │ ├── FrontEnds.scala │ │ │ ├── Infrastructure.scala │ │ │ ├── Internals.scala │ │ │ ├── Names.scala │ │ │ ├── Parsers.scala │ │ │ ├── Reifiers.scala │ │ │ ├── Typers.scala │ │ │ ├── Universe.scala │ │ │ ├── blackbox │ │ │ │ └── Context.scala │ │ │ ├── package.scala │ │ │ └── whitebox │ │ │ │ └── Context.scala │ │ │ └── runtime │ │ │ ├── Gil.scala │ │ │ ├── JavaMirrors.scala │ │ │ ├── JavaUniverse.scala │ │ │ ├── JavaUniverseForce.scala │ │ │ ├── ReflectSetup.scala │ │ │ ├── ReflectionUtils.scala │ │ │ ├── Settings.scala │ │ │ ├── SymbolLoaders.scala │ │ │ ├── SymbolTable.scala │ │ │ ├── SynchronizedOps.scala │ │ │ ├── SynchronizedSymbols.scala │ │ │ ├── SynchronizedTypes.scala │ │ │ ├── ThreadLocalStorage.scala │ │ │ ├── TwoWayCache.scala │ │ │ ├── TwoWayCaches.scala │ │ │ └── package.scala │ ├── repl-frontend │ │ └── scala │ │ │ └── tools │ │ │ └── nsc │ │ │ ├── Interpreter.scala │ │ │ ├── MainGenericRunner.scala │ │ │ └── interpreter │ │ │ ├── InteractiveReader.scala │ │ │ ├── jline │ │ │ ├── FileBackedHistory.scala │ │ │ ├── JLineDelimiter.scala │ │ │ ├── JLineHistory.scala │ │ │ └── JLineReader.scala │ │ │ └── shell │ │ │ ├── Completion.scala │ │ │ ├── History.scala │ │ │ ├── IBindings.java │ │ │ ├── ILoop.scala │ │ │ ├── InteractiveReader.scala │ │ │ ├── JavapClass.scala │ │ │ ├── Logger.scala │ │ │ ├── LoopCommands.scala │ │ │ ├── Parsed.scala │ │ │ ├── Pasted.scala │ │ │ ├── ReplCompletion.scala │ │ │ ├── Reporter.scala │ │ │ ├── Scripted.scala │ │ │ ├── ShellConfig.scala │ │ │ ├── SimpleHistory.scala │ │ │ ├── SimpleReader.scala │ │ │ └── Tabulators.scala │ ├── repl │ │ └── scala │ │ │ └── tools │ │ │ └── nsc │ │ │ └── interpreter │ │ │ ├── AbstractOrMissingHandler.scala │ │ │ ├── ExprTyper.scala │ │ │ ├── IMain.scala │ │ │ ├── ISettings.scala │ │ │ ├── Imports.scala │ │ │ ├── Interface.scala │ │ │ ├── MemberHandlers.scala │ │ │ ├── NamedParam.scala │ │ │ ├── Naming.scala │ │ │ ├── Phased.scala │ │ │ ├── Power.scala │ │ │ ├── PresentationCompilation.scala │ │ │ ├── ReplDir.scala │ │ │ ├── ReplGlobal.scala │ │ │ ├── ReplStrings.scala │ │ │ ├── ReplVals.scala │ │ │ ├── Results.scala │ │ │ ├── Scripted.scala │ │ │ └── StdReplTags.scala │ ├── scaladoc │ │ └── scala │ │ │ └── tools │ │ │ ├── ant │ │ │ └── Scaladoc.scala │ │ │ └── nsc │ │ │ ├── ScalaDoc.scala │ │ │ └── doc │ │ │ ├── DocFactory.scala │ │ │ ├── DocParser.scala │ │ │ ├── Index.scala │ │ │ ├── ScaladocAnalyzer.scala │ │ │ ├── ScaladocGlobal.scala │ │ │ ├── Settings.scala │ │ │ ├── Uncompilable.scala │ │ │ ├── Universe.scala │ │ │ ├── base │ │ │ ├── CommentFactoryBase.scala │ │ │ ├── LinkTo.scala │ │ │ ├── MemberLookupBase.scala │ │ │ └── comment │ │ │ │ ├── Body.scala │ │ │ │ └── Comment.scala │ │ │ ├── doclet │ │ │ ├── Generator.scala │ │ │ └── Universer.scala │ │ │ ├── html │ │ │ ├── Doclet.scala │ │ │ ├── HtmlFactory.scala │ │ │ ├── HtmlPage.scala │ │ │ ├── Page.scala │ │ │ ├── SyntaxHigh.scala │ │ │ ├── page │ │ │ │ ├── Entity.scala │ │ │ │ ├── IndexScript.scala │ │ │ │ ├── JSON.scala │ │ │ │ └── diagram │ │ │ │ │ ├── DiagramGenerator.scala │ │ │ │ │ ├── DiagramStats.scala │ │ │ │ │ ├── DotDiagramGenerator.scala │ │ │ │ │ └── DotRunner.scala │ │ │ └── resource │ │ │ │ └── lib │ │ │ │ ├── MaterialIcons-Regular.eot │ │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ │ ├── MaterialIcons-Regular.woff │ │ │ │ ├── abstract_type.svg │ │ │ │ ├── class.svg │ │ │ │ ├── class_comp.svg │ │ │ │ ├── class_diagram.png │ │ │ │ ├── diagrams.css │ │ │ │ ├── diagrams.js │ │ │ │ ├── index.css │ │ │ │ ├── index.js │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.mousewheel.min.js │ │ │ │ ├── jquery.panzoom.min.js │ │ │ │ ├── lato-v11-latin-100.eot │ │ │ │ ├── lato-v11-latin-100.ttf │ │ │ │ ├── lato-v11-latin-100.woff │ │ │ │ ├── lato-v11-latin-regular.eot │ │ │ │ ├── lato-v11-latin-regular.ttf │ │ │ │ ├── lato-v11-latin-regular.woff │ │ │ │ ├── modernizr.custom.js │ │ │ │ ├── object.svg │ │ │ │ ├── object_comp.svg │ │ │ │ ├── object_comp_trait.svg │ │ │ │ ├── object_diagram.png │ │ │ │ ├── open-sans-v13-latin-regular.eot │ │ │ │ ├── open-sans-v13-latin-regular.ttf │ │ │ │ ├── open-sans-v13-latin-regular.woff │ │ │ │ ├── ownderbg2.gif │ │ │ │ ├── ownerbg.gif │ │ │ │ ├── ownerbg2.gif │ │ │ │ ├── package.svg │ │ │ │ ├── ref-index.css │ │ │ │ ├── scheduler.js │ │ │ │ ├── source-code-pro-v6-latin-700.eot │ │ │ │ ├── source-code-pro-v6-latin-700.ttf │ │ │ │ ├── source-code-pro-v6-latin-700.woff │ │ │ │ ├── source-code-pro-v6-latin-regular.eot │ │ │ │ ├── source-code-pro-v6-latin-regular.ttf │ │ │ │ ├── source-code-pro-v6-latin-regular.woff │ │ │ │ ├── template.css │ │ │ │ ├── template.js │ │ │ │ ├── tools.tooltip.js │ │ │ │ ├── trait.svg │ │ │ │ ├── trait_comp.svg │ │ │ │ ├── trait_diagram.png │ │ │ │ ├── type_diagram.png │ │ │ │ ├── type_tags.ai │ │ │ │ └── versions.txt │ │ │ └── model │ │ │ ├── CommentFactory.scala │ │ │ ├── Entity.scala │ │ │ ├── IndexModelFactory.scala │ │ │ ├── MemberLookup.scala │ │ │ ├── ModelFactory.scala │ │ │ ├── ModelFactoryImplicitSupport.scala │ │ │ ├── ModelFactoryTypeSupport.scala │ │ │ ├── TreeEntity.scala │ │ │ ├── TreeFactory.scala │ │ │ ├── TypeEntity.scala │ │ │ ├── ValueArgument.scala │ │ │ ├── Visibility.scala │ │ │ └── diagram │ │ │ ├── Diagram.scala │ │ │ ├── DiagramDirectiveParser.scala │ │ │ └── DiagramFactory.scala │ └── scalap │ │ ├── decoder.properties │ │ └── scala │ │ └── tools │ │ └── scalap │ │ ├── Arguments.scala │ │ ├── ByteArrayReader.scala │ │ ├── Classfile.scala │ │ ├── Classfiles.scala │ │ ├── CodeWriter.scala │ │ ├── Decode.scala │ │ ├── JavaWriter.scala │ │ ├── Main.scala │ │ ├── MetaParser.scala │ │ ├── Properties.scala │ │ └── scalax │ │ ├── rules │ │ ├── Memoisable.scala │ │ ├── Result.scala │ │ ├── Rule.scala │ │ ├── Rules.scala │ │ ├── SeqRule.scala │ │ └── scalasig │ │ │ ├── ClassFileParser.scala │ │ │ ├── Flags.scala │ │ │ ├── ScalaSig.scala │ │ │ ├── ScalaSigPrinter.scala │ │ │ ├── SourceFileAttributeParser.scala │ │ │ ├── Symbol.scala │ │ │ └── Type.scala │ │ └── util │ │ └── StringUtil.scala ├── test │ ├── ant │ │ └── test-basic │ │ │ ├── build.xml │ │ │ └── src │ │ │ └── test-1.scala │ ├── benchmarks │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ ├── benchmark │ │ │ ├── JmhRunner.scala │ │ │ ├── KeySeq.scala │ │ │ └── KeySeqBuilder.scala │ │ │ └── scala │ │ │ ├── BitManipulationBenchmark.scala │ │ │ ├── collection │ │ │ ├── immutable │ │ │ │ ├── HashMapBenchmark.scala │ │ │ │ ├── ListBenchmark.scala │ │ │ │ ├── MapBenchmark.scala │ │ │ │ ├── SetBenchmark.scala │ │ │ │ └── VectorMapBenchmark.scala │ │ │ └── mutable │ │ │ │ ├── HashMapBenchmark.scala │ │ │ │ ├── OpenHashMapBenchmark.scala │ │ │ │ └── OpenHashMapRunner.scala │ │ │ └── util │ │ │ └── matching │ │ │ ├── RegexUnapplyBenchmark.scala │ │ │ └── RegexUnapplyGroupsBenchmark.scala │ ├── files │ │ ├── .gitignore │ │ ├── bench │ │ │ └── equality │ │ │ │ ├── eq.scala │ │ │ │ ├── eqeq.eqlog │ │ │ │ └── eqeq.scala │ │ ├── codelib │ │ │ └── code.jar.desired.sha1 │ │ ├── filters │ │ ├── instrumented │ │ │ ├── InstrumentationTest.check │ │ │ ├── InstrumentationTest.scala │ │ │ ├── README │ │ │ ├── indy-symbol-literal.scala │ │ │ ├── inline-in-constructors.check │ │ │ ├── inline-in-constructors.flags │ │ │ ├── inline-in-constructors │ │ │ │ ├── assert_1.scala │ │ │ │ ├── bar_2.scala │ │ │ │ └── test_3.scala │ │ │ ├── t6611.check │ │ │ └── t6611.scala │ │ ├── jvm │ │ │ ├── annotations.check │ │ │ ├── annotations.flags │ │ │ ├── annotations.scala │ │ │ ├── beanInfo.check │ │ │ ├── beanInfo │ │ │ │ ├── C_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── bigints.check │ │ │ ├── bigints.scala │ │ │ ├── bytecode-test-example.check │ │ │ ├── bytecode-test-example.flags │ │ │ ├── bytecode-test-example │ │ │ │ ├── Foo_1.scala │ │ │ │ └── Test.scala │ │ │ ├── console.check │ │ │ ├── console.scala │ │ │ ├── deprecation.check │ │ │ ├── deprecation │ │ │ │ ├── Defs.java │ │ │ │ ├── Test_1.scala │ │ │ │ └── Use_2.java │ │ │ ├── duration-java.check │ │ │ ├── duration-java │ │ │ │ └── Test.java │ │ │ ├── duration-tck.scala │ │ │ ├── future-spec.check │ │ │ ├── future-spec │ │ │ │ ├── FutureTests.scala │ │ │ │ ├── PromiseTests.scala │ │ │ │ ├── TryTests.scala │ │ │ │ └── main.scala │ │ │ ├── genericNest.scala │ │ │ ├── getGenericSuperclass.check │ │ │ ├── getGenericSuperclass.scala │ │ │ ├── inner.check │ │ │ ├── inner.scala │ │ │ ├── innerClassAttribute │ │ │ │ ├── Classes_1.scala │ │ │ │ ├── JavaAnnot_1.java │ │ │ │ ├── Java_A_1.java │ │ │ │ └── Test.scala │ │ │ ├── innerClassEnclMethodJavaReflection.scala │ │ │ ├── interpreter.check │ │ │ ├── interpreter.scala │ │ │ ├── javaReflection.check │ │ │ ├── javaReflection │ │ │ │ ├── Classes_1.scala │ │ │ │ └── Test.scala │ │ │ ├── libnatives-32.so │ │ │ ├── libnatives-64.so │ │ │ ├── libnatives.jnilib │ │ │ ├── manifests-new.check │ │ │ ├── manifests-new.scala │ │ │ ├── manifests-old.check │ │ │ ├── manifests-old.scala │ │ │ ├── matchbox.check │ │ │ ├── matchbox.flags │ │ │ ├── matchbox │ │ │ │ ├── Test.scala │ │ │ │ └── matchbox_1.scala │ │ │ ├── methvsfield.check │ │ │ ├── methvsfield.java │ │ │ ├── methvsfield.scala │ │ │ ├── mkLibNatives.bat │ │ │ ├── mkLibNatives.sh │ │ │ ├── named-args-in-order.check │ │ │ ├── named-args-in-order │ │ │ │ ├── SameBytecode.scala │ │ │ │ └── Test.scala │ │ │ ├── natives-32.dll │ │ │ ├── natives-64.dll │ │ │ ├── natives.c │ │ │ ├── natives.check │ │ │ ├── natives.h │ │ │ ├── natives.scala │ │ │ ├── nest.check │ │ │ ├── nest.java │ │ │ ├── nest.scala │ │ │ ├── non-fatal-tests.scala │ │ │ ├── opt_value_class.check │ │ │ ├── opt_value_class │ │ │ │ ├── Value_1.scala │ │ │ │ └── test.scala │ │ │ ├── outerEnum.check │ │ │ ├── outerEnum.scala │ │ │ ├── protectedacc.check │ │ │ ├── protectedacc.scala │ │ │ ├── scala-concurrent-tck.check │ │ │ ├── scala-concurrent-tck.scala │ │ │ ├── serialization-new.check │ │ │ ├── serialization-new.scala │ │ │ ├── serialization.check │ │ │ ├── serialization.scala │ │ │ ├── signum.scala │ │ │ ├── stringbuilder.check │ │ │ ├── stringbuilder.scala │ │ │ ├── sync-var.check │ │ │ ├── sync-var.scala │ │ │ ├── t0014.check │ │ │ ├── t0014.scala │ │ │ ├── t10610.check │ │ │ ├── t10610.scala │ │ │ ├── t1116.scala │ │ │ ├── t1143-2.check │ │ │ ├── t1143-2 │ │ │ │ ├── Marker.java │ │ │ │ └── t1143-2.scala │ │ │ ├── t1143.scala │ │ │ ├── t1342.check │ │ │ ├── t1342 │ │ │ │ ├── JI.java │ │ │ │ └── SI.scala │ │ │ ├── t1461.scala │ │ │ ├── t1464.check │ │ │ ├── t1464 │ │ │ │ ├── MyTrait.scala │ │ │ │ └── Test.java │ │ │ ├── t1600.scala │ │ │ ├── t2104.scala │ │ │ ├── t2163 │ │ │ │ ├── t2163.java │ │ │ │ └── t2163.scala │ │ │ ├── t2214.check │ │ │ ├── t2214.scala │ │ │ ├── t2470.check │ │ │ ├── t2470 │ │ │ │ ├── Action.java │ │ │ │ ├── Read_Classfile_2.scala │ │ │ │ ├── Task.java │ │ │ │ └── Test_1.scala │ │ │ ├── t2511.check │ │ │ ├── t2511.scala │ │ │ ├── t2570 │ │ │ │ ├── Test.scala │ │ │ │ ├── Test1.java │ │ │ │ └── Test3.java │ │ │ ├── t2585 │ │ │ │ ├── Test.java │ │ │ │ └── genericouter.scala │ │ │ ├── t2827.check │ │ │ ├── t2827.scala │ │ │ ├── t3003.check │ │ │ ├── t3003 │ │ │ │ ├── Annot.java │ │ │ │ └── Test_1.scala │ │ │ ├── t3415 │ │ │ │ ├── Hello.java │ │ │ │ └── HelloWorld.scala │ │ │ ├── t5471.check │ │ │ ├── t5471.scala │ │ │ ├── t6172.scala │ │ │ ├── t676.check │ │ │ ├── t676.scala │ │ │ ├── t680.scala │ │ │ ├── t7146.check │ │ │ ├── t7146.scala │ │ │ ├── t7181 │ │ │ │ ├── Foo_1.scala │ │ │ │ └── Test.scala │ │ │ ├── t7253.check │ │ │ ├── t7253 │ │ │ │ ├── Base_1.scala │ │ │ │ ├── JavaClient_1.java │ │ │ │ ├── ScalaClient_1.scala │ │ │ │ └── test.scala │ │ │ ├── t8582.check │ │ │ ├── t8582.flags │ │ │ ├── t8582.scala │ │ │ ├── t8689.check │ │ │ ├── t8689.scala │ │ │ ├── t8786-sig.scala │ │ │ ├── t8786 │ │ │ │ ├── A_1.scala │ │ │ │ ├── B_2.java │ │ │ │ └── Test_2.scala │ │ │ ├── t9044.scala │ │ │ ├── t9105.check │ │ │ ├── t9105.scala │ │ │ ├── throws-annot-from-java.check │ │ │ ├── throws-annot-from-java │ │ │ │ ├── PolymorphicException_1.scala │ │ │ │ ├── Test_3.scala │ │ │ │ └── ThrowsDeclaration_2.java │ │ │ ├── throws-annot.check │ │ │ ├── throws-annot.scala │ │ │ ├── try-type-tests.scala │ │ │ ├── typerep.check │ │ │ ├── typerep.scala │ │ │ ├── unittest_io_Jvm.check │ │ │ ├── unittest_io_Jvm.scala │ │ │ ├── unreachable.check │ │ │ ├── unreachable │ │ │ │ ├── Foo_1.flags │ │ │ │ ├── Foo_1.scala │ │ │ │ └── Test.scala │ │ │ ├── value-class-boxing.check │ │ │ ├── value-class-boxing │ │ │ │ ├── Analyzed_1.scala │ │ │ │ └── test.scala │ │ │ ├── varargs-separate-bytecode.check │ │ │ ├── varargs-separate-bytecode │ │ │ │ ├── AbstractProps_1.scala │ │ │ │ ├── Props_2.scala │ │ │ │ └── Test.scala │ │ │ ├── varargs.check │ │ │ ├── varargs │ │ │ │ ├── JavaClass.java │ │ │ │ ├── VaClass.scala │ │ │ │ └── varargs.scala │ │ │ ├── xml05.check │ │ │ └── xml05.scala │ │ ├── lib │ │ │ ├── annotations.jar.desired.sha1 │ │ │ ├── enums.jar.desired.sha1 │ │ │ ├── genericNest.jar.desired.sha1 │ │ │ ├── jsoup-1.3.1.jar.desired.sha1 │ │ │ ├── macro210.jar.desired.sha1 │ │ │ ├── methvsfield.jar.desired.sha1 │ │ │ └── nest.jar.desired.sha1 │ │ ├── neg │ │ │ ├── abstract-class-2.check │ │ │ ├── abstract-class-2.scala │ │ │ ├── abstract-class-error.check │ │ │ ├── abstract-class-error │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── abstract-concrete-methods.check │ │ │ ├── abstract-concrete-methods.scala │ │ │ ├── abstract-explaintypes.check │ │ │ ├── abstract-explaintypes.flags │ │ │ ├── abstract-explaintypes.scala │ │ │ ├── abstract-inaccessible.check │ │ │ ├── abstract-inaccessible.flags │ │ │ ├── abstract-inaccessible.scala │ │ │ ├── abstract-report.check │ │ │ ├── abstract-report.scala │ │ │ ├── abstract-report2.check │ │ │ ├── abstract-report2.scala │ │ │ ├── abstract-vars.check │ │ │ ├── abstract-vars.scala │ │ │ ├── abstract.check │ │ │ ├── abstract.scala │ │ │ ├── abstraction-from-volatile-type-error.check │ │ │ ├── abstraction-from-volatile-type-error.scala │ │ │ ├── accesses.check │ │ │ ├── accesses.scala │ │ │ ├── accesses2.check │ │ │ ├── accesses2.scala │ │ │ ├── aladdin1055.check │ │ │ ├── aladdin1055.flags │ │ │ ├── aladdin1055 │ │ │ │ ├── A.scala │ │ │ │ └── Test_1.scala │ │ │ ├── ambiguous-float-dots2.check │ │ │ ├── ambiguous-float-dots2.scala │ │ │ ├── ambiguous-same.check │ │ │ ├── ambiguous-same.scala │ │ │ ├── annot-nonconst.check │ │ │ ├── annot-nonconst.scala │ │ │ ├── any-vs-anyref.check │ │ │ ├── any-vs-anyref.scala │ │ │ ├── anytrait.check │ │ │ ├── anytrait.scala │ │ │ ├── anyval-anyref-parent.check │ │ │ ├── anyval-anyref-parent.scala │ │ │ ├── applydynamic_sip.check │ │ │ ├── applydynamic_sip.flags │ │ │ ├── applydynamic_sip.scala │ │ │ ├── bad-advice.check │ │ │ ├── bad-advice.flags │ │ │ ├── bad-advice.scala │ │ │ ├── badtok-1-212.check │ │ │ ├── badtok-1-212.flags │ │ │ ├── badtok-1-212.scala │ │ │ ├── badtok-1.check │ │ │ ├── badtok-1.flags │ │ │ ├── badtok-1.scala │ │ │ ├── badtok-2.check │ │ │ ├── badtok-2.scala │ │ │ ├── badtok-3.check │ │ │ ├── badtok-3.scala │ │ │ ├── beanInfoDeprecation.check │ │ │ ├── beanInfoDeprecation.flags │ │ │ ├── beanInfoDeprecation.scala │ │ │ ├── case-collision.check │ │ │ ├── case-collision.flags │ │ │ ├── case-collision.scala │ │ │ ├── case-collision2.check │ │ │ ├── case-collision2.flags │ │ │ ├── case-collision2.scala │ │ │ ├── caseinherit.check │ │ │ ├── caseinherit.scala │ │ │ ├── catch-all.check │ │ │ ├── catch-all.flags │ │ │ ├── catch-all.scala │ │ │ ├── check-dead.check │ │ │ ├── check-dead.flags │ │ │ ├── check-dead.scala │ │ │ ├── checksensible.check │ │ │ ├── checksensible.flags │ │ │ ├── checksensible.scala │ │ │ ├── checksensibleUnit.check │ │ │ ├── checksensibleUnit.scala │ │ │ ├── choices.check │ │ │ ├── choices.flags │ │ │ ├── choices.scala │ │ │ ├── class-of-double-targs.check │ │ │ ├── class-of-double-targs.scala │ │ │ ├── classmanifests_new_deprecations.check │ │ │ ├── classmanifests_new_deprecations.flags │ │ │ ├── classmanifests_new_deprecations.scala │ │ │ ├── classtags_contextbound_a.check │ │ │ ├── classtags_contextbound_a.scala │ │ │ ├── classtags_contextbound_b.check │ │ │ ├── classtags_contextbound_b.scala │ │ │ ├── classtags_contextbound_c.check │ │ │ ├── classtags_contextbound_c.scala │ │ │ ├── classtags_dont_use_typetags.check │ │ │ ├── classtags_dont_use_typetags.scala │ │ │ ├── compile-time-only-a.check │ │ │ ├── compile-time-only-a.scala │ │ │ ├── compile-time-only-b.check │ │ │ ├── compile-time-only-b.scala │ │ │ ├── constrs.check │ │ │ ├── constrs.scala │ │ │ ├── constructor-init-order.check │ │ │ ├── constructor-init-order.flags │ │ │ ├── constructor-init-order.scala │ │ │ ├── constructor-prefix-error.check │ │ │ ├── constructor-prefix-error.scala │ │ │ ├── cycle-bounds.check │ │ │ ├── cycle-bounds.flags │ │ │ ├── cycle-bounds.scala │ │ │ ├── cyclics-import.check │ │ │ ├── cyclics-import.scala │ │ │ ├── cyclics.check │ │ │ ├── cyclics.scala │ │ │ ├── dbldef.check │ │ │ ├── dbldef.scala │ │ │ ├── deadline-inf-illegal.check │ │ │ ├── deadline-inf-illegal.scala │ │ │ ├── delayed-init-ref.check │ │ │ ├── delayed-init-ref.flags │ │ │ ├── delayed-init-ref.scala │ │ │ ├── depmet_1.check │ │ │ ├── depmet_1.scala │ │ │ ├── deprecated-target.check │ │ │ ├── deprecated-target.flags │ │ │ ├── deprecated-target.scala │ │ │ ├── divergent-implicit.check │ │ │ ├── divergent-implicit.scala │ │ │ ├── dotless-targs.check │ │ │ ├── dotless-targs.scala │ │ │ ├── double-def-top-level.check │ │ │ ├── double-def-top-level │ │ │ │ ├── A_1.scala │ │ │ │ ├── B_2.scala │ │ │ │ ├── C_3.scala │ │ │ │ └── D_3.scala │ │ │ ├── error_dependentMethodTpeConversionToFunction.check │ │ │ ├── error_dependentMethodTpeConversionToFunction.scala │ │ │ ├── error_tooManyArgsPattern.check │ │ │ ├── error_tooManyArgsPattern.scala │ │ │ ├── eta-expand-star.check │ │ │ ├── eta-expand-star.scala │ │ │ ├── exhausting.check │ │ │ ├── exhausting.flags │ │ │ ├── exhausting.scala │ │ │ ├── faculty.check │ │ │ ├── faculty.scala │ │ │ ├── finitary-error.check │ │ │ ├── finitary-error.scala │ │ │ ├── for-comprehension-old.check │ │ │ ├── for-comprehension-old.flags │ │ │ ├── for-comprehension-old.scala │ │ │ ├── forgot-interpolator.check │ │ │ ├── forgot-interpolator.flags │ │ │ ├── forgot-interpolator.scala │ │ │ ├── forward.check │ │ │ ├── forward.scala │ │ │ ├── found-req-variance.check │ │ │ ├── found-req-variance.scala │ │ │ ├── gadts1.check │ │ │ ├── gadts1.scala │ │ │ ├── gadts2-strict.check │ │ │ ├── gadts2-strict.flags │ │ │ ├── gadts2-strict.scala │ │ │ ├── gadts2.check │ │ │ ├── gadts2.flags │ │ │ ├── gadts2.scala │ │ │ ├── higherkind_novalue.check │ │ │ ├── higherkind_novalue.scala │ │ │ ├── hk-bad-bounds.check │ │ │ ├── hk-bad-bounds.scala │ │ │ ├── hk-typevar-unification.check │ │ │ ├── hk-typevar-unification.flags │ │ │ ├── hk-typevar-unification.scala │ │ │ ├── hkgadt.check │ │ │ ├── hkgadt.scala │ │ │ ├── illegal-stmt-start.check │ │ │ ├── illegal-stmt-start.scala │ │ │ ├── imp2.check │ │ │ ├── imp2.scala │ │ │ ├── implicit-ambiguous-2.check │ │ │ ├── implicit-ambiguous-2.scala │ │ │ ├── implicit-ambiguous-invalid.check │ │ │ ├── implicit-ambiguous-invalid.flags │ │ │ ├── implicit-ambiguous-invalid.scala │ │ │ ├── implicit-ambiguous.check │ │ │ ├── implicit-ambiguous.scala │ │ │ ├── implicit-shadow.check │ │ │ ├── implicit-shadow.flags │ │ │ ├── implicit-shadow.scala │ │ │ ├── implicits.check │ │ │ ├── implicits.scala │ │ │ ├── import-precedence.check │ │ │ ├── import-precedence.scala │ │ │ ├── infix-op-positions.check │ │ │ ├── infix-op-positions.scala │ │ │ ├── inlineIndyLambdaPrivate.check │ │ │ ├── inlineIndyLambdaPrivate.flags │ │ │ ├── inlineIndyLambdaPrivate │ │ │ │ ├── A_1.java │ │ │ │ └── Test_2.scala │ │ │ ├── inlineMaxSize.check │ │ │ ├── inlineMaxSize.flags │ │ │ ├── inlineMaxSize.scala │ │ │ ├── interop_abstypetags_arenot_classmanifests.check │ │ │ ├── interop_abstypetags_arenot_classmanifests.scala │ │ │ ├── interop_abstypetags_arenot_classtags.check │ │ │ ├── interop_abstypetags_arenot_classtags.scala │ │ │ ├── interop_abstypetags_arenot_manifests.check │ │ │ ├── interop_abstypetags_arenot_manifests.scala │ │ │ ├── interop_classmanifests_arenot_typetags.check │ │ │ ├── interop_classmanifests_arenot_typetags.scala │ │ │ ├── interop_classtags_arenot_manifests.check │ │ │ ├── interop_classtags_arenot_manifests.scala │ │ │ ├── interop_typetags_arenot_classmanifests.check │ │ │ ├── interop_typetags_arenot_classmanifests.scala │ │ │ ├── interop_typetags_arenot_classtags.check │ │ │ ├── interop_typetags_arenot_classtags.scala │ │ │ ├── interop_typetags_without_classtags_arenot_manifests.check │ │ │ ├── interop_typetags_without_classtags_arenot_manifests.scala │ │ │ ├── java-access-neg.check │ │ │ ├── java-access-neg │ │ │ │ ├── J.java │ │ │ │ └── S2.scala │ │ │ ├── lazy-override.check │ │ │ ├── lazy-override.scala │ │ │ ├── lazyvals.check │ │ │ ├── lazyvals.scala │ │ │ ├── literals.check │ │ │ ├── literals.scala │ │ │ ├── literate_existentials.check │ │ │ ├── literate_existentials.scala │ │ │ ├── logImplicits.check │ │ │ ├── logImplicits.flags │ │ │ ├── logImplicits.scala │ │ │ ├── lub-from-hell-2.check │ │ │ ├── lub-from-hell-2.scala │ │ │ ├── lubs.check │ │ │ ├── lubs.scala │ │ │ ├── macro-abort.check │ │ │ ├── macro-abort │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-basic-mamdmi.check │ │ │ ├── macro-basic-mamdmi.flags │ │ │ ├── macro-basic-mamdmi │ │ │ │ └── Impls_Macros_Test_1.scala │ │ │ ├── macro-blackbox-dynamic-materialization.check │ │ │ ├── macro-blackbox-dynamic-materialization │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-blackbox-extractor.check │ │ │ ├── macro-blackbox-extractor │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-blackbox-fundep-materialization.check │ │ │ ├── macro-blackbox-fundep-materialization.flags │ │ │ ├── macro-blackbox-fundep-materialization │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-blackbox-structural.check │ │ │ ├── macro-blackbox-structural │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-bundle-abstract.check │ │ │ ├── macro-bundle-abstract.scala │ │ │ ├── macro-bundle-ambiguous.check │ │ │ ├── macro-bundle-ambiguous.scala │ │ │ ├── macro-bundle-need-qualifier.check │ │ │ ├── macro-bundle-need-qualifier.scala │ │ │ ├── macro-bundle-noncontext.check │ │ │ ├── macro-bundle-noncontext.scala │ │ │ ├── macro-bundle-nonpublic-c.check │ │ │ ├── macro-bundle-nonpublic-c.scala │ │ │ ├── macro-bundle-nonpublic-impl.check │ │ │ ├── macro-bundle-nonpublic-impl.scala │ │ │ ├── macro-bundle-nonstatic.check │ │ │ ├── macro-bundle-nonstatic.scala │ │ │ ├── macro-bundle-object.check │ │ │ ├── macro-bundle-object.scala │ │ │ ├── macro-bundle-overloaded.check │ │ │ ├── macro-bundle-overloaded.scala │ │ │ ├── macro-bundle-polymorphic.check │ │ │ ├── macro-bundle-polymorphic.scala │ │ │ ├── macro-bundle-priority-bundle.check │ │ │ ├── macro-bundle-priority-bundle.scala │ │ │ ├── macro-bundle-priority-nonbundle.check │ │ │ ├── macro-bundle-priority-nonbundle.scala │ │ │ ├── macro-bundle-trait.check │ │ │ ├── macro-bundle-trait.scala │ │ │ ├── macro-bundle-whitebox-use-raw.check │ │ │ ├── macro-bundle-whitebox-use-raw │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-bundle-whitebox-use-refined.check │ │ │ ├── macro-bundle-whitebox-use-refined │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-bundle-wrongcontext-a.check │ │ │ ├── macro-bundle-wrongcontext-a.scala │ │ │ ├── macro-bundle-wrongcontext-b.check │ │ │ ├── macro-bundle-wrongcontext-b.scala │ │ │ ├── macro-cyclic.check │ │ │ ├── macro-cyclic.flags │ │ │ ├── macro-cyclic │ │ │ │ └── Impls_Macros_1.scala │ │ │ ├── macro-deprecate-idents.check │ │ │ ├── macro-deprecate-idents.flags │ │ │ ├── macro-deprecate-idents.scala │ │ │ ├── macro-divergence-controlled.check │ │ │ ├── macro-divergence-controlled │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-exception.check │ │ │ ├── macro-exception │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-false-deprecation-warning.check │ │ │ ├── macro-false-deprecation-warning.flags │ │ │ ├── macro-false-deprecation-warning │ │ │ │ └── Impls_Macros_1.scala │ │ │ ├── macro-incompatible-macro-engine-a.check │ │ │ ├── macro-incompatible-macro-engine-a │ │ │ │ ├── Macros_2.flags │ │ │ │ ├── Macros_2.scala │ │ │ │ ├── Plugin_1.scala │ │ │ │ ├── Test_3.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── macro-incompatible-macro-engine-b.check │ │ │ ├── macro-incompatible-macro-engine-b.flags │ │ │ ├── macro-incompatible-macro-engine-b │ │ │ │ ├── Macros_2.flags │ │ │ │ ├── Macros_2.scala │ │ │ │ ├── Plugin_1.scala │ │ │ │ ├── Test_3.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── macro-incompatible-macro-engine-c.check │ │ │ ├── macro-incompatible-macro-engine-c.scala │ │ │ ├── macro-invalidimpl.check │ │ │ ├── macro-invalidimpl.flags │ │ │ ├── macro-invalidimpl │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-invalidret.check │ │ │ ├── macro-invalidret.flags │ │ │ ├── macro-invalidret │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-invalidshape.check │ │ │ ├── macro-invalidshape.flags │ │ │ ├── macro-invalidshape │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-invalidsig-params-badtype.check │ │ │ ├── macro-invalidsig-params-badtype.flags │ │ │ ├── macro-invalidsig-params-badtype │ │ │ │ └── Impls_Macros_1.scala │ │ │ ├── macro-invalidsig.check │ │ │ ├── macro-invalidsig.flags │ │ │ ├── macro-invalidsig │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-invalidusage-badargs.check │ │ │ ├── macro-invalidusage-badargs.flags │ │ │ ├── macro-invalidusage-badargs │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-invalidusage-badbounds.check │ │ │ ├── macro-invalidusage-badbounds.flags │ │ │ ├── macro-invalidusage-badbounds │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-invalidusage-badtargs.check │ │ │ ├── macro-invalidusage-badtargs.flags │ │ │ ├── macro-invalidusage-badtargs │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-invalidusage-methodvaluesyntax.check │ │ │ ├── macro-invalidusage-methodvaluesyntax.flags │ │ │ ├── macro-invalidusage-methodvaluesyntax │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-invalidusage-nontypeable.check │ │ │ ├── macro-invalidusage-nontypeable.flags │ │ │ ├── macro-invalidusage-nontypeable │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-invalidusage-presuper.check │ │ │ ├── macro-invalidusage-presuper.flags │ │ │ ├── macro-invalidusage-presuper │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-noexpand.check │ │ │ ├── macro-noexpand.flags │ │ │ ├── macro-noexpand │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-nontypeablebody.check │ │ │ ├── macro-nontypeablebody.flags │ │ │ ├── macro-nontypeablebody │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-override-macro-overrides-abstract-method-a.check │ │ │ ├── macro-override-macro-overrides-abstract-method-a.flags │ │ │ ├── macro-override-macro-overrides-abstract-method-a │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-override-macro-overrides-abstract-method-b.check │ │ │ ├── macro-override-macro-overrides-abstract-method-b.flags │ │ │ ├── macro-override-macro-overrides-abstract-method-b │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-override-method-overrides-macro.check │ │ │ ├── macro-override-method-overrides-macro.flags │ │ │ ├── macro-override-method-overrides-macro │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-qmarkqmarkqmark.check │ │ │ ├── macro-qmarkqmarkqmark.scala │ │ │ ├── macro-quasiquotes.check │ │ │ ├── macro-quasiquotes │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reify-splice-splice.check │ │ │ ├── macro-reify-splice-splice.flags │ │ │ ├── macro-reify-splice-splice │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reify-typetag-hktypeparams-notags.check │ │ │ ├── macro-reify-typetag-hktypeparams-notags │ │ │ │ └── Test.scala │ │ │ ├── macro-reify-typetag-typeparams-notags.check │ │ │ ├── macro-reify-typetag-typeparams-notags │ │ │ │ └── Test.scala │ │ │ ├── macro-reify-typetag-useabstypetag.check │ │ │ ├── macro-reify-typetag-useabstypetag │ │ │ │ └── Test.scala │ │ │ ├── macro-without-xmacros-a.check │ │ │ ├── macro-without-xmacros-a │ │ │ │ ├── Impls_1.scala │ │ │ │ ├── Macros_2.scala │ │ │ │ └── Test_3.scala │ │ │ ├── macro-without-xmacros-b.check │ │ │ ├── macro-without-xmacros-b │ │ │ │ ├── Impls_1.scala │ │ │ │ ├── Macros_2.scala │ │ │ │ └── Test_3.scala │ │ │ ├── main1.check │ │ │ ├── main1.flags │ │ │ ├── main1.scala │ │ │ ├── maxerrs.check │ │ │ ├── maxerrs.flags │ │ │ ├── maxerrs.scala │ │ │ ├── maxwarns.check │ │ │ ├── maxwarns.flags │ │ │ ├── maxwarns.scala │ │ │ ├── migration28.check │ │ │ ├── migration28.flags │ │ │ ├── migration28.scala │ │ │ ├── missing-arg-list.check │ │ │ ├── missing-arg-list.scala │ │ │ ├── missing-param-type-tuple.check │ │ │ ├── missing-param-type-tuple.scala │ │ │ ├── mixins.check │ │ │ ├── mixins.scala │ │ │ ├── moduleClassReference.check │ │ │ ├── moduleClassReference.scala │ │ │ ├── multi-array.check │ │ │ ├── multi-array.flags │ │ │ ├── multi-array.scala │ │ │ ├── name-lookup-stable.check │ │ │ ├── name-lookup-stable.scala │ │ │ ├── names-defaults-neg-ref.check │ │ │ ├── names-defaults-neg-ref.scala │ │ │ ├── names-defaults-neg-warn.check │ │ │ ├── names-defaults-neg-warn.flags │ │ │ ├── names-defaults-neg-warn.scala │ │ │ ├── names-defaults-neg.check │ │ │ ├── names-defaults-neg.flags │ │ │ ├── names-defaults-neg.scala │ │ │ ├── nested-annotation.check │ │ │ ├── nested-annotation.scala │ │ │ ├── nested-fn-print.check │ │ │ ├── nested-fn-print.scala │ │ │ ├── newpat_unreachable.check │ │ │ ├── newpat_unreachable.flags │ │ │ ├── newpat_unreachable.scala │ │ │ ├── no-implicit-to-anyref-any-val.check │ │ │ ├── no-implicit-to-anyref-any-val.scala │ │ │ ├── no-predef.check │ │ │ ├── no-predef.flags │ │ │ ├── no-predef.scala │ │ │ ├── noMember1.check │ │ │ ├── noMember1.scala │ │ │ ├── noMember2.check │ │ │ ├── noMember2.scala │ │ │ ├── nonlocal-warning.check │ │ │ ├── nonlocal-warning.flags │ │ │ ├── nonlocal-warning.scala │ │ │ ├── nopredefs.check │ │ │ ├── nopredefs.scala │ │ │ ├── not-a-legal-formal-parameter-tuple.check │ │ │ ├── not-a-legal-formal-parameter-tuple.scala │ │ │ ├── not-possible-cause.check │ │ │ ├── not-possible-cause.scala │ │ │ ├── null-unsoundness.check │ │ │ ├── null-unsoundness.scala │ │ │ ├── nullary-override.check │ │ │ ├── nullary-override.flags │ │ │ ├── nullary-override.scala │ │ │ ├── object-not-a-value.check │ │ │ ├── object-not-a-value.scala │ │ │ ├── optimiseDeprecated.check │ │ │ ├── optimiseDeprecated.flags │ │ │ ├── optimiseDeprecated.scala │ │ │ ├── outer-ref-checks.check │ │ │ ├── outer-ref-checks.flags │ │ │ ├── outer-ref-checks.scala │ │ │ ├── overload-msg.check │ │ │ ├── overload-msg.scala │ │ │ ├── overload.check │ │ │ ├── overload.scala │ │ │ ├── overloaded-implicit.check │ │ │ ├── overloaded-implicit.flags │ │ │ ├── overloaded-implicit.scala │ │ │ ├── overloaded-unapply.check │ │ │ ├── overloaded-unapply.scala │ │ │ ├── override-object-flag.check │ │ │ ├── override-object-flag.scala │ │ │ ├── override-object-no.check │ │ │ ├── override-object-no.flags │ │ │ ├── override-object-no.scala │ │ │ ├── override.check │ │ │ ├── override.scala │ │ │ ├── parent-inherited-twice-error.check │ │ │ ├── parent-inherited-twice-error.scala │ │ │ ├── parstar.check │ │ │ ├── parstar.scala │ │ │ ├── partestInvalidFlag.check │ │ │ ├── partestInvalidFlag.flags │ │ │ ├── partestInvalidFlag.scala │ │ │ ├── pat_unreachable.check │ │ │ ├── pat_unreachable.flags │ │ │ ├── pat_unreachable.scala │ │ │ ├── patmat-classtag-compound.check │ │ │ ├── patmat-classtag-compound.flags │ │ │ ├── patmat-classtag-compound.scala │ │ │ ├── patmat-type-check.check │ │ │ ├── patmat-type-check.scala │ │ │ ├── patmatexhaust-huge.check │ │ │ ├── patmatexhaust-huge.flags │ │ │ ├── patmatexhaust-huge.scala │ │ │ ├── patmatexhaust.check │ │ │ ├── patmatexhaust.flags │ │ │ ├── patmatexhaust.scala │ │ │ ├── patternalts.check │ │ │ ├── patternalts.scala │ │ │ ├── permanent-blindness.check │ │ │ ├── permanent-blindness.flags │ │ │ ├── permanent-blindness.scala │ │ │ ├── predef-masking.check │ │ │ ├── predef-masking.scala │ │ │ ├── primitive-sigs-1.check │ │ │ ├── primitive-sigs-1 │ │ │ │ ├── A.scala │ │ │ │ ├── B.scala │ │ │ │ └── J.java │ │ │ ├── protected-constructors.check │ │ │ ├── protected-constructors.scala │ │ │ ├── protected-static-fail.check │ │ │ ├── protected-static-fail │ │ │ │ ├── J.java │ │ │ │ ├── S.scala │ │ │ │ └── S0.scala │ │ │ ├── qualifying-class-error-1.check │ │ │ ├── qualifying-class-error-1.scala │ │ │ ├── qualifying-class-error-2.check │ │ │ ├── qualifying-class-error-2.scala │ │ │ ├── quasiquotes-syntax-error-position.check │ │ │ ├── quasiquotes-syntax-error-position.scala │ │ │ ├── quasiquotes-unliftable-not-found.check │ │ │ ├── quasiquotes-unliftable-not-found.scala │ │ │ ├── raw-types-stubs.check │ │ │ ├── raw-types-stubs │ │ │ │ ├── M_1.java │ │ │ │ ├── Raw_2.java │ │ │ │ └── S_3.scala │ │ │ ├── reassignment.check │ │ │ ├── reassignment.scala │ │ │ ├── reify_ann2b.check │ │ │ ├── reify_ann2b.scala │ │ │ ├── reify_metalevel_breach_+0_refers_to_1.check │ │ │ ├── reify_metalevel_breach_+0_refers_to_1.scala │ │ │ ├── reify_metalevel_breach_-1_refers_to_0_a.check │ │ │ ├── reify_metalevel_breach_-1_refers_to_0_a.scala │ │ │ ├── reify_metalevel_breach_-1_refers_to_0_b.check │ │ │ ├── reify_metalevel_breach_-1_refers_to_0_b.scala │ │ │ ├── reify_metalevel_breach_-1_refers_to_1.check │ │ │ ├── reify_metalevel_breach_-1_refers_to_1.scala │ │ │ ├── reify_nested_inner_refers_to_local.check │ │ │ ├── reify_nested_inner_refers_to_local.scala │ │ │ ├── run-gadts-strict.check │ │ │ ├── run-gadts-strict.flags │ │ │ ├── run-gadts-strict.scala │ │ │ ├── sabin2.check │ │ │ ├── sabin2.scala │ │ │ ├── saferJavaConversions.check │ │ │ ├── saferJavaConversions.scala │ │ │ ├── saito.check │ │ │ ├── saito.scala │ │ │ ├── sammy_disabled.check │ │ │ ├── sammy_disabled.flags │ │ │ ├── sammy_disabled.scala │ │ │ ├── sammy_error.check │ │ │ ├── sammy_error.scala │ │ │ ├── sammy_error_exist_no_crash.check │ │ │ ├── sammy_error_exist_no_crash.scala │ │ │ ├── sammy_expected.check │ │ │ ├── sammy_expected.scala │ │ │ ├── sammy_overload.check │ │ │ ├── sammy_overload.scala │ │ │ ├── sammy_restrictions.check │ │ │ ├── sammy_restrictions.scala │ │ │ ├── sammy_wrong_arity.check │ │ │ ├── sammy_wrong_arity.scala │ │ │ ├── scopes.check │ │ │ ├── scopes.scala │ │ │ ├── sd128.check │ │ │ ├── sd128 │ │ │ │ ├── A.java │ │ │ │ └── Test.scala │ │ │ ├── sealed-final-neg.check │ │ │ ├── sealed-final-neg.flags │ │ │ ├── sealed-final-neg.scala │ │ │ ├── sealed-java-enums.check │ │ │ ├── sealed-java-enums.flags │ │ │ ├── sealed-java-enums.scala │ │ │ ├── sensitive.check │ │ │ ├── sensitive.scala │ │ │ ├── sensitive2.check │ │ │ ├── sensitive2.scala │ │ │ ├── serialversionuid-not-const.check │ │ │ ├── serialversionuid-not-const.scala │ │ │ ├── spec-overrides.check │ │ │ ├── spec-overrides.scala │ │ │ ├── specification-scopes.check │ │ │ ├── specification-scopes │ │ │ │ ├── P_1.scala │ │ │ │ └── P_2.scala │ │ │ ├── stmt-expr-discard.check │ │ │ ├── stmt-expr-discard.flags │ │ │ ├── stmt-expr-discard.scala │ │ │ ├── stringinterpolation_macro-neg.check │ │ │ ├── stringinterpolation_macro-neg.scala │ │ │ ├── structural.check │ │ │ ├── structural.scala │ │ │ ├── suggest-similar.check │ │ │ ├── suggest-similar.scala │ │ │ ├── super-cast-or-test.check │ │ │ ├── super-cast-or-test.scala │ │ │ ├── switch.check │ │ │ ├── switch.flags │ │ │ ├── switch.scala │ │ │ ├── t0003.check │ │ │ ├── t0003.scala │ │ │ ├── t0015.check │ │ │ ├── t0015.scala │ │ │ ├── t0117.check │ │ │ ├── t0117.scala │ │ │ ├── t0152.check │ │ │ ├── t0152.scala │ │ │ ├── t0204.check │ │ │ ├── t0204.scala │ │ │ ├── t0207.check │ │ │ ├── t0207.scala │ │ │ ├── t0209.check │ │ │ ├── t0209.scala │ │ │ ├── t0214.check │ │ │ ├── t0214.scala │ │ │ ├── t0218.check │ │ │ ├── t0218.scala │ │ │ ├── t0226.check │ │ │ ├── t0226.scala │ │ │ ├── t0259.check │ │ │ ├── t0259.scala │ │ │ ├── t0345.check │ │ │ ├── t0345.scala │ │ │ ├── t0351.check │ │ │ ├── t0351.scala │ │ │ ├── t0418.check │ │ │ ├── t0418.scala │ │ │ ├── t0503.check │ │ │ ├── t0503.scala │ │ │ ├── t0513.check │ │ │ ├── t0513.scala │ │ │ ├── t0528neg.check │ │ │ ├── t0528neg.scala │ │ │ ├── t0565.check │ │ │ ├── t0565.scala │ │ │ ├── t0590.check │ │ │ ├── t0590.scala │ │ │ ├── t0606.check │ │ │ ├── t0606.scala │ │ │ ├── t0673.check │ │ │ ├── t0673 │ │ │ │ ├── JavaClass.java │ │ │ │ └── Test.scala │ │ │ ├── t0699.check │ │ │ ├── t0699 │ │ │ │ ├── A.scala │ │ │ │ └── B.scala │ │ │ ├── t0764.check │ │ │ ├── t0764.scala │ │ │ ├── t0764b.check │ │ │ ├── t0764b.scala │ │ │ ├── t0816.check │ │ │ ├── t0816.scala │ │ │ ├── t0842.check │ │ │ ├── t0842.scala │ │ │ ├── t0899.check │ │ │ ├── t0899.scala │ │ │ ├── t0903.check │ │ │ ├── t0903.scala │ │ │ ├── t10066.check │ │ │ ├── t10066.scala │ │ │ ├── t10068.check │ │ │ ├── t10068.flags │ │ │ ├── t10068.scala │ │ │ ├── t10081.check │ │ │ ├── t10081.scala │ │ │ ├── t1009.check │ │ │ ├── t1009.scala │ │ │ ├── t10097.check │ │ │ ├── t10097.flags │ │ │ ├── t10097.scala │ │ │ ├── t10097b.check │ │ │ ├── t10097b.flags │ │ │ ├── t10097b.scala │ │ │ ├── t1010.check │ │ │ ├── t1010.scala │ │ │ ├── t10207.check │ │ │ ├── t10207.scala │ │ │ ├── t10249.check │ │ │ ├── t10249 │ │ │ │ ├── A.java │ │ │ │ └── Test_1.scala │ │ │ ├── t10260.check │ │ │ ├── t10260 │ │ │ │ ├── A.java │ │ │ │ ├── B.java │ │ │ │ ├── C.java │ │ │ │ ├── D.java │ │ │ │ ├── IA.java │ │ │ │ ├── IB.java │ │ │ │ ├── IC.java │ │ │ │ ├── ID.java │ │ │ │ └── Test.scala │ │ │ ├── t10270.check │ │ │ ├── t10270.flags │ │ │ ├── t10270 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Main_2.scala │ │ │ ├── t10279.check │ │ │ ├── t10279.scala │ │ │ ├── t10296-after.check │ │ │ ├── t10296-after.flags │ │ │ ├── t10296-after │ │ │ │ ├── UnusedMacro_1.scala │ │ │ │ └── Unused_2.scala │ │ │ ├── t10296-both.check │ │ │ ├── t10296-both.flags │ │ │ ├── t10296-both │ │ │ │ ├── UnusedMacro_1.scala │ │ │ │ └── Unused_2.scala │ │ │ ├── t10296-warn.check │ │ │ ├── t10296-warn.flags │ │ │ ├── t10296-warn │ │ │ │ ├── UnusedMacro_1.scala │ │ │ │ └── Unused_2.scala │ │ │ ├── t1033.check │ │ │ ├── t1033.scala │ │ │ ├── t1038.check │ │ │ ├── t1038.scala │ │ │ ├── t1041.check │ │ │ ├── t1041.scala │ │ │ ├── t1049.check │ │ │ ├── t1049.scala │ │ │ ├── t1106.check │ │ │ ├── t1106.scala │ │ │ ├── t1112.check │ │ │ ├── t1112.scala │ │ │ ├── t112706A.check │ │ │ ├── t112706A.scala │ │ │ ├── t1163.check │ │ │ ├── t1163.scala │ │ │ ├── t1168.check │ │ │ ├── t1168.scala │ │ │ ├── t1181.check │ │ │ ├── t1181.scala │ │ │ ├── t1183.check │ │ │ ├── t1183.scala │ │ │ ├── t1215.check │ │ │ ├── t1215.scala │ │ │ ├── t1224.check │ │ │ ├── t1224.flags │ │ │ ├── t1224.scala │ │ │ ├── t1241.check │ │ │ ├── t1241.scala │ │ │ ├── t1275.check │ │ │ ├── t1275.scala │ │ │ ├── t1286.check │ │ │ ├── t1286 │ │ │ │ ├── a.scala │ │ │ │ └── b.scala │ │ │ ├── t1355.check │ │ │ ├── t1355.scala │ │ │ ├── t1364.check │ │ │ ├── t1364.scala │ │ │ ├── t1371.check │ │ │ ├── t1371.scala │ │ │ ├── t1422.check │ │ │ ├── t1422.scala │ │ │ ├── t1431.check │ │ │ ├── t1431.scala │ │ │ ├── t1432.check │ │ │ ├── t1432.scala │ │ │ ├── t1477.check │ │ │ ├── t1477.scala │ │ │ ├── t1503.check │ │ │ ├── t1503.flags │ │ │ ├── t1503.scala │ │ │ ├── t1523.check │ │ │ ├── t1523.scala │ │ │ ├── t1548.check │ │ │ ├── t1548 │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t1623.check │ │ │ ├── t1623.scala │ │ │ ├── t1672b.check │ │ │ ├── t1672b.scala │ │ │ ├── t1701.check │ │ │ ├── t1701.scala │ │ │ ├── t1705.check │ │ │ ├── t1705.scala │ │ │ ├── t1838.check │ │ │ ├── t1838.scala │ │ │ ├── t1845.check │ │ │ ├── t1845.scala │ │ │ ├── t1872.check │ │ │ ├── t1872.scala │ │ │ ├── t1878.check │ │ │ ├── t1878.scala │ │ │ ├── t1909-object.check │ │ │ ├── t1909-object.flags │ │ │ ├── t1909-object.scala │ │ │ ├── t1909b.check │ │ │ ├── t1909b.scala │ │ │ ├── t1960.check │ │ │ ├── t1960.scala │ │ │ ├── t1980.check │ │ │ ├── t1980.flags │ │ │ ├── t1980.scala │ │ │ ├── t200.check │ │ │ ├── t200.scala │ │ │ ├── t2031.check │ │ │ ├── t2031.scala │ │ │ ├── t2066.check │ │ │ ├── t2066.scala │ │ │ ├── t2066b.check │ │ │ ├── t2066b.scala │ │ │ ├── t2070.check │ │ │ ├── t2070.scala │ │ │ ├── t2078.check │ │ │ ├── t2078.scala │ │ │ ├── t2102.check │ │ │ ├── t2102.scala │ │ │ ├── t2139.check │ │ │ ├── t2139.scala │ │ │ ├── t2144.check │ │ │ ├── t2144.scala │ │ │ ├── t2148.check │ │ │ ├── t2148.scala │ │ │ ├── t2180.check │ │ │ ├── t2180.scala │ │ │ ├── t2206.check │ │ │ ├── t2206.scala │ │ │ ├── t2208.check │ │ │ ├── t2208.scala │ │ │ ├── t2213.check │ │ │ ├── t2213.scala │ │ │ ├── t2275a.check │ │ │ ├── t2275a.scala │ │ │ ├── t2275b.check │ │ │ ├── t2275b.scala │ │ │ ├── t2296a.check │ │ │ ├── t2296a │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t2296b.check │ │ │ ├── t2296b │ │ │ │ ├── J_1.java │ │ │ │ └── S_2.scala │ │ │ ├── t2316.check │ │ │ ├── t2316.scala │ │ │ ├── t2336.check │ │ │ ├── t2336.scala │ │ │ ├── t2388.check │ │ │ ├── t2388.scala │ │ │ ├── t2405.check │ │ │ ├── t2405.scala │ │ │ ├── t2416.check │ │ │ ├── t2416.scala │ │ │ ├── t2421b.check │ │ │ ├── t2421b.scala │ │ │ ├── t2441.check │ │ │ ├── t2441.scala │ │ │ ├── t2442.check │ │ │ ├── t2442.flags │ │ │ ├── t2442 │ │ │ │ ├── MyEnum.java │ │ │ │ ├── MySecondEnum.java │ │ │ │ └── t2442.scala │ │ │ ├── t2462a.check │ │ │ ├── t2462a.scala │ │ │ ├── t2462b.check │ │ │ ├── t2462b.flags │ │ │ ├── t2462b.scala │ │ │ ├── t2462c.check │ │ │ ├── t2462c.flags │ │ │ ├── t2462c.scala │ │ │ ├── t2488.check │ │ │ ├── t2488.scala │ │ │ ├── t2494.check │ │ │ ├── t2494.scala │ │ │ ├── t2641.check │ │ │ ├── t2641.scala │ │ │ ├── t2712-1.check │ │ │ ├── t2712-1.scala │ │ │ ├── t2712-2.check │ │ │ ├── t2712-2.flags │ │ │ ├── t2712-2.scala │ │ │ ├── t2712-3.check │ │ │ ├── t2712-3.scala │ │ │ ├── t276.check │ │ │ ├── t276.scala │ │ │ ├── t2773.check │ │ │ ├── t2773.scala │ │ │ ├── t2775.check │ │ │ ├── t2775.scala │ │ │ ├── t2779.check │ │ │ ├── t2779.scala │ │ │ ├── t278.check │ │ │ ├── t278.scala │ │ │ ├── t2796.check │ │ │ ├── t2796.flags │ │ │ ├── t2796.scala │ │ │ ├── t2801.check │ │ │ ├── t2801.scala │ │ │ ├── t284.check │ │ │ ├── t284.flags │ │ │ ├── t284.scala │ │ │ ├── t2866.check │ │ │ ├── t2866.scala │ │ │ ├── t2870.check │ │ │ ├── t2870.scala │ │ │ ├── t2910.check │ │ │ ├── t2910.scala │ │ │ ├── t2918.check │ │ │ ├── t2918.scala │ │ │ ├── t2968.check │ │ │ ├── t2968.scala │ │ │ ├── t2968b.check │ │ │ ├── t2968b.scala │ │ │ ├── t2973.check │ │ │ ├── t2973.scala │ │ │ ├── t3006.check │ │ │ ├── t3006.scala │ │ │ ├── t3015.check │ │ │ ├── t3015.scala │ │ │ ├── t3098.check │ │ │ ├── t3098.flags │ │ │ ├── t3098 │ │ │ │ ├── a.scala │ │ │ │ └── b.scala │ │ │ ├── t3118.check │ │ │ ├── t3118.scala │ │ │ ├── t3160ambiguous.check │ │ │ ├── t3160ambiguous.scala │ │ │ ├── t3189.check │ │ │ ├── t3189.scala │ │ │ ├── t3209.check │ │ │ ├── t3209.scala │ │ │ ├── t3222.check │ │ │ ├── t3222.scala │ │ │ ├── t3224.check │ │ │ ├── t3224.scala │ │ │ ├── t3236-neg.check │ │ │ ├── t3236-neg │ │ │ │ ├── AnnotationTest.scala │ │ │ │ ├── BooleanAnnotation.java │ │ │ │ ├── Constants.java │ │ │ │ ├── IntAnnotation.java │ │ │ │ ├── ShortAnnotation.java │ │ │ │ └── StringAnnotation.java │ │ │ ├── t3275.check │ │ │ ├── t3275.scala │ │ │ ├── t3346b.check │ │ │ ├── t3346b.scala │ │ │ ├── t3346c.check │ │ │ ├── t3346c.scala │ │ │ ├── t3346i.check │ │ │ ├── t3346i.scala │ │ │ ├── t3392.check │ │ │ ├── t3392.scala │ │ │ ├── t3399.check │ │ │ ├── t3399.scala │ │ │ ├── t3403.check │ │ │ ├── t3403.scala │ │ │ ├── t343.check │ │ │ ├── t343.scala │ │ │ ├── t3453.check │ │ │ ├── t3453.scala │ │ │ ├── t3481.check │ │ │ ├── t3481.scala │ │ │ ├── t3507-old.check │ │ │ ├── t3507-old.scala │ │ │ ├── t3604.check │ │ │ ├── t3604.scala │ │ │ ├── t3614.check │ │ │ ├── t3614.scala │ │ │ ├── t3649.check │ │ │ ├── t3649.scala │ │ │ ├── t3653.check │ │ │ ├── t3653.scala │ │ │ ├── t3663.check │ │ │ ├── t3663 │ │ │ │ ├── PackageProtected.java │ │ │ │ └── main.scala │ │ │ ├── t3683a.check │ │ │ ├── t3683a.flags │ │ │ ├── t3683a.scala │ │ │ ├── t3683b.check │ │ │ ├── t3683b.scala │ │ │ ├── t3691.check │ │ │ ├── t3691.scala │ │ │ ├── t3692-new.check │ │ │ ├── t3692-new.flags │ │ │ ├── t3692-new.scala │ │ │ ├── t3714-neg.check │ │ │ ├── t3714-neg.scala │ │ │ ├── t3736.check │ │ │ ├── t3736.scala │ │ │ ├── t3757.check │ │ │ ├── t3757 │ │ │ │ ├── A.java │ │ │ │ └── B.scala │ │ │ ├── t3761-overload-byname.check │ │ │ ├── t3761-overload-byname.scala │ │ │ ├── t3769.check │ │ │ ├── t3769.scala │ │ │ ├── t3772.check │ │ │ ├── t3772.scala │ │ │ ├── t3776.check │ │ │ ├── t3776.scala │ │ │ ├── t3816.check │ │ │ ├── t3816.scala │ │ │ ├── t3836.check │ │ │ ├── t3836.scala │ │ │ ├── t3854.check │ │ │ ├── t3854.scala │ │ │ ├── t3871.check │ │ │ ├── t3871.scala │ │ │ ├── t3871b.check │ │ │ ├── t3871b.scala │ │ │ ├── t3873.check │ │ │ ├── t3873.scala │ │ │ ├── t3909.check │ │ │ ├── t3909.scala │ │ │ ├── t391.check │ │ │ ├── t391.scala │ │ │ ├── t3913.check │ │ │ ├── t3913.scala │ │ │ ├── t3934.check │ │ │ ├── t3934.scala │ │ │ ├── t3971.check │ │ │ ├── t3971.scala │ │ │ ├── t3977.check │ │ │ ├── t3977.scala │ │ │ ├── t3987.check │ │ │ ├── t3987.scala │ │ │ ├── t3995.check │ │ │ ├── t3995.scala │ │ │ ├── t4044.check │ │ │ ├── t4044.scala │ │ │ ├── t4064.check │ │ │ ├── t4064.scala │ │ │ ├── t4069.check │ │ │ ├── t4069.scala │ │ │ ├── t4079.check │ │ │ ├── t4079 │ │ │ │ ├── t4079_1.scala │ │ │ │ └── t4079_2.scala │ │ │ ├── t409.check │ │ │ ├── t409.scala │ │ │ ├── t4091.check │ │ │ ├── t4091.scala │ │ │ ├── t4098.check │ │ │ ├── t4098.scala │ │ │ ├── t412.check │ │ │ ├── t412.scala │ │ │ ├── t4134.check │ │ │ ├── t4134.scala │ │ │ ├── t4137.check │ │ │ ├── t4137.scala │ │ │ ├── t414.check │ │ │ ├── t414.scala │ │ │ ├── t4158.check │ │ │ ├── t4158.scala │ │ │ ├── t4163.check │ │ │ ├── t4163.scala │ │ │ ├── t4166.check │ │ │ ├── t4166.scala │ │ │ ├── t4174.check │ │ │ ├── t4174.scala │ │ │ ├── t418.check │ │ │ ├── t418.scala │ │ │ ├── t4196.check │ │ │ ├── t4196.scala │ │ │ ├── t421.check │ │ │ ├── t421.scala │ │ │ ├── t4217.check │ │ │ ├── t4217.scala │ │ │ ├── t4221.check │ │ │ ├── t4221.scala │ │ │ ├── t425.check │ │ │ ├── t425.scala │ │ │ ├── t4270.check │ │ │ ├── t4270.scala │ │ │ ├── t4271.check │ │ │ ├── t4271.scala │ │ │ ├── t4302.check │ │ │ ├── t4302.flags │ │ │ ├── t4302.scala │ │ │ ├── t4417.check │ │ │ ├── t4417.scala │ │ │ ├── t4419.check │ │ │ ├── t4419.scala │ │ │ ├── t4425.check │ │ │ ├── t4425.scala │ │ │ ├── t4425b.check │ │ │ ├── t4425b.scala │ │ │ ├── t4431.check │ │ │ ├── t4431.scala │ │ │ ├── t4440.check │ │ │ ├── t4440.flags │ │ │ ├── t4440.scala │ │ │ ├── t4457_1.check │ │ │ ├── t4457_1.scala │ │ │ ├── t4457_2.check │ │ │ ├── t4457_2.scala │ │ │ ├── t4460a.check │ │ │ ├── t4460a.scala │ │ │ ├── t4460b.check │ │ │ ├── t4460b.scala │ │ │ ├── t4460c.check │ │ │ ├── t4460c.scala │ │ │ ├── t4515.check │ │ │ ├── t4515.scala │ │ │ ├── t452.check │ │ │ ├── t452.scala │ │ │ ├── t4541.check │ │ │ ├── t4541.scala │ │ │ ├── t4541b.check │ │ │ ├── t4541b.scala │ │ │ ├── t4568.check │ │ │ ├── t4568.scala │ │ │ ├── t4584.check │ │ │ ├── t4584.scala │ │ │ ├── t464-neg.check │ │ │ ├── t464-neg.scala │ │ │ ├── t4691_exhaust_extractor.check │ │ │ ├── t4691_exhaust_extractor.flags │ │ │ ├── t4691_exhaust_extractor.scala │ │ │ ├── t4727.check │ │ │ ├── t4727.scala │ │ │ ├── t4728.check │ │ │ ├── t4728.scala │ │ │ ├── t473.check │ │ │ ├── t473.scala │ │ │ ├── t4749.check │ │ │ ├── t4749.flags │ │ │ ├── t4749.scala │ │ │ ├── t4762.check │ │ │ ├── t4762.flags │ │ │ ├── t4762.scala │ │ │ ├── t4818.check │ │ │ ├── t4818.scala │ │ │ ├── t4831.check │ │ │ ├── t4831.scala │ │ │ ├── t4842.check │ │ │ ├── t4842.scala │ │ │ ├── t4851.check │ │ │ ├── t4851.flags │ │ │ ├── t4851 │ │ │ │ ├── J.java │ │ │ │ ├── J2.java │ │ │ │ └── S.scala │ │ │ ├── t4877.check │ │ │ ├── t4877.scala │ │ │ ├── t4879.check │ │ │ ├── t4879.scala │ │ │ ├── t4882.check │ │ │ ├── t4882.scala │ │ │ ├── t4928.check │ │ │ ├── t4928.scala │ │ │ ├── t4987.check │ │ │ ├── t4987.scala │ │ │ ├── t4989.check │ │ │ ├── t4989.scala │ │ │ ├── t500.check │ │ │ ├── t500.scala │ │ │ ├── t501.check │ │ │ ├── t501.scala │ │ │ ├── t5031.check │ │ │ ├── t5031 │ │ │ │ ├── Id.scala │ │ │ │ └── package.scala │ │ │ ├── t5031b.check │ │ │ ├── t5031b │ │ │ │ ├── a.scala │ │ │ │ └── b.scala │ │ │ ├── t5044.check │ │ │ ├── t5044.scala │ │ │ ├── t5060.check │ │ │ ├── t5060.scala │ │ │ ├── t5063.check │ │ │ ├── t5063.scala │ │ │ ├── t5067.check │ │ │ ├── t5067.scala │ │ │ ├── t5078.check │ │ │ ├── t5078.scala │ │ │ ├── t5091.check │ │ │ ├── t5091.scala │ │ │ ├── t5093.check │ │ │ ├── t5093.scala │ │ │ ├── t510.check │ │ │ ├── t510.scala │ │ │ ├── t5106.check │ │ │ ├── t5106.scala │ │ │ ├── t512.check │ │ │ ├── t512.scala │ │ │ ├── t5120.check │ │ │ ├── t5120.scala │ │ │ ├── t5148.check │ │ │ ├── t5148.scala │ │ │ ├── t515.check │ │ │ ├── t515.scala │ │ │ ├── t5152.check │ │ │ ├── t5152.scala │ │ │ ├── t5182.check │ │ │ ├── t5182.flags │ │ │ ├── t5182.scala │ │ │ ├── t5189.check │ │ │ ├── t5189.scala │ │ │ ├── t5189_inferred.check │ │ │ ├── t5189_inferred.scala │ │ │ ├── t5189b.check │ │ │ ├── t5189b.scala │ │ │ ├── t520.check │ │ │ ├── t520.scala │ │ │ ├── t521.check │ │ │ ├── t521.scala │ │ │ ├── t5318.check │ │ │ ├── t5318.scala │ │ │ ├── t5318b.check │ │ │ ├── t5318b.scala │ │ │ ├── t5318c.check │ │ │ ├── t5318c.scala │ │ │ ├── t5340.check │ │ │ ├── t5340.scala │ │ │ ├── t5352.check │ │ │ ├── t5352.flags │ │ │ ├── t5352.scala │ │ │ ├── t5354.check │ │ │ ├── t5354.scala │ │ │ ├── t5355.check │ │ │ ├── t5355.scala │ │ │ ├── t5357.check │ │ │ ├── t5357.scala │ │ │ ├── t5358.check │ │ │ ├── t5358.scala │ │ │ ├── t5361.check │ │ │ ├── t5361.scala │ │ │ ├── t5376.check │ │ │ ├── t5376.scala │ │ │ ├── t5378.check │ │ │ ├── t5378.scala │ │ │ ├── t5390.check │ │ │ ├── t5390.scala │ │ │ ├── t5390b.check │ │ │ ├── t5390b.scala │ │ │ ├── t5390c.check │ │ │ ├── t5390c.scala │ │ │ ├── t5390d.check │ │ │ ├── t5390d.scala │ │ │ ├── t5426.check │ │ │ ├── t5426.flags │ │ │ ├── t5426.scala │ │ │ ├── t5429.check │ │ │ ├── t5429.scala │ │ │ ├── t5440.check │ │ │ ├── t5440.flags │ │ │ ├── t5440.scala │ │ │ ├── t545.check │ │ │ ├── t545.scala │ │ │ ├── t5452-new.check │ │ │ ├── t5452-new.scala │ │ │ ├── t5452-old.check │ │ │ ├── t5452-old.scala │ │ │ ├── t5455.check │ │ │ ├── t5455.scala │ │ │ ├── t5493.check │ │ │ ├── t5493.scala │ │ │ ├── t5497.check │ │ │ ├── t5497.scala │ │ │ ├── t550.check │ │ │ ├── t550.scala │ │ │ ├── t5510.check │ │ │ ├── t5510.scala │ │ │ ├── t5529.check │ │ │ ├── t5529.scala │ │ │ ├── t5543.check │ │ │ ├── t5543.scala │ │ │ ├── t5544.check │ │ │ ├── t5544 │ │ │ │ ├── Api_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t5553_1.check │ │ │ ├── t5553_1.scala │ │ │ ├── t5553_2.check │ │ │ ├── t5553_2.scala │ │ │ ├── t5554.check │ │ │ ├── t5554.scala │ │ │ ├── t556.check │ │ │ ├── t556.scala │ │ │ ├── t5564.check │ │ │ ├── t5564.scala │ │ │ ├── t5572.check │ │ │ ├── t5572.scala │ │ │ ├── t5578.check │ │ │ ├── t5578.scala │ │ │ ├── t558.check │ │ │ ├── t558.scala │ │ │ ├── t5580a.check │ │ │ ├── t5580a.scala │ │ │ ├── t5580b.check │ │ │ ├── t5580b.scala │ │ │ ├── t5617.check │ │ │ ├── t5617.scala │ │ │ ├── t562.check │ │ │ ├── t562.scala │ │ │ ├── t563.check │ │ │ ├── t563.scala │ │ │ ├── t5639b.check │ │ │ ├── t5639b.flags │ │ │ ├── t5639b │ │ │ │ ├── A_1.scala │ │ │ │ └── A_2.scala │ │ │ ├── t565.check │ │ │ ├── t565.scala │ │ │ ├── t5663-badwarneq.check │ │ │ ├── t5663-badwarneq.flags │ │ │ ├── t5663-badwarneq.scala │ │ │ ├── t5666.check │ │ │ ├── t5666.scala │ │ │ ├── t5675.check │ │ │ ├── t5675.flags │ │ │ ├── t5675.scala │ │ │ ├── t5683.check │ │ │ ├── t5683.scala │ │ │ ├── t5687.check │ │ │ ├── t5687.scala │ │ │ ├── t5689.check │ │ │ ├── t5689.flags │ │ │ ├── t5689.scala │ │ │ ├── t5691.check │ │ │ ├── t5691.flags │ │ │ ├── t5691.scala │ │ │ ├── t5696.check │ │ │ ├── t5696.scala │ │ │ ├── t5702-neg-bad-and-wild.check │ │ │ ├── t5702-neg-bad-and-wild.scala │ │ │ ├── t5702-neg-bad-brace.check │ │ │ ├── t5702-neg-bad-brace.scala │ │ │ ├── t5702-neg-bad-xbrace.check │ │ │ ├── t5702-neg-bad-xbrace.scala │ │ │ ├── t5702-neg-ugly-xbrace.check │ │ │ ├── t5702-neg-ugly-xbrace.scala │ │ │ ├── t5728.check │ │ │ ├── t5728.scala │ │ │ ├── t5735.check │ │ │ ├── t5735.scala │ │ │ ├── t5753.check │ │ │ ├── t5753.flags │ │ │ ├── t5753 │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t576.check │ │ │ ├── t576.scala │ │ │ ├── t5761.check │ │ │ ├── t5761.scala │ │ │ ├── t5762.check │ │ │ ├── t5762.flags │ │ │ ├── t5762.scala │ │ │ ├── t5799.check │ │ │ ├── t5799.scala │ │ │ ├── t5801.check │ │ │ ├── t5801.scala │ │ │ ├── t5803.check │ │ │ ├── t5803.scala │ │ │ ├── t5821.check │ │ │ ├── t5821.scala │ │ │ ├── t5830.check │ │ │ ├── t5830.flags │ │ │ ├── t5830.scala │ │ │ ├── t5839.check │ │ │ ├── t5839.scala │ │ │ ├── t585.check │ │ │ ├── t585.scala │ │ │ ├── t5856.check │ │ │ ├── t5856.scala │ │ │ ├── t5878.check │ │ │ ├── t5878.scala │ │ │ ├── t588.check │ │ │ ├── t588.scala │ │ │ ├── t5882.check │ │ │ ├── t5882.scala │ │ │ ├── t5892.check │ │ │ ├── t5892.scala │ │ │ ├── t5903a.check │ │ │ ├── t5903a │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t5903b.check │ │ │ ├── t5903b │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t5903c.check │ │ │ ├── t5903c │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t5903d.check │ │ │ ├── t5903d │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t5903e.check │ │ │ ├── t5903e │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t591.check │ │ │ ├── t591.scala │ │ │ ├── t593.check │ │ │ ├── t593.scala │ │ │ ├── t5956.check │ │ │ ├── t5956.flags │ │ │ ├── t5956.scala │ │ │ ├── t5969.check │ │ │ ├── t5969.scala │ │ │ ├── t6011.check │ │ │ ├── t6011.flags │ │ │ ├── t6011.scala │ │ │ ├── t6013.check │ │ │ ├── t6013 │ │ │ │ ├── Abstract.java │ │ │ │ ├── Base.java │ │ │ │ └── DerivedScala.scala │ │ │ ├── t6040.check │ │ │ ├── t6040.scala │ │ │ ├── t6042.check │ │ │ ├── t6042.scala │ │ │ ├── t6048.check │ │ │ ├── t6048.flags │ │ │ ├── t6048.scala │ │ │ ├── t6074.check │ │ │ ├── t6074.scala │ │ │ ├── t608.check │ │ │ ├── t608.scala │ │ │ ├── t6082.check │ │ │ ├── t6082.scala │ │ │ ├── t6083.check │ │ │ ├── t6083.scala │ │ │ ├── t6120.check │ │ │ ├── t6120.flags │ │ │ ├── t6120.scala │ │ │ ├── t6123-explaintypes-macros.check │ │ │ ├── t6123-explaintypes-macros │ │ │ │ ├── BadMac_2.flags │ │ │ │ ├── BadMac_2.scala │ │ │ │ ├── Macros.flags │ │ │ │ └── Macros.scala │ │ │ ├── t6138.check │ │ │ ├── t6138.scala │ │ │ ├── t6162-inheritance.check │ │ │ ├── t6162-inheritance.flags │ │ │ ├── t6162-inheritance │ │ │ │ ├── defn.scala │ │ │ │ └── usage.scala │ │ │ ├── t6162-overriding.check │ │ │ ├── t6162-overriding.flags │ │ │ ├── t6162-overriding.scala │ │ │ ├── t6214.check │ │ │ ├── t6214.scala │ │ │ ├── t6227.check │ │ │ ├── t6227.scala │ │ │ ├── t6258.check │ │ │ ├── t6258.scala │ │ │ ├── t6260-named.check │ │ │ ├── t6260-named.scala │ │ │ ├── t6260c.check │ │ │ ├── t6260c.scala │ │ │ ├── t6263.check │ │ │ ├── t6263.scala │ │ │ ├── t6264.check │ │ │ ├── t6264.flags │ │ │ ├── t6264.scala │ │ │ ├── t6276.check │ │ │ ├── t6276.flags │ │ │ ├── t6276.scala │ │ │ ├── t6283.check │ │ │ ├── t6283.scala │ │ │ ├── t6289.check │ │ │ ├── t6289.flags │ │ │ ├── t6289 │ │ │ │ ├── J.java │ │ │ │ └── SUT_5.scala │ │ │ ├── t630.check │ │ │ ├── t630.scala │ │ │ ├── t631.check │ │ │ ├── t631.scala │ │ │ ├── t6323a.check │ │ │ ├── t6323a.flags │ │ │ ├── t6323a.scala │ │ │ ├── t633.check │ │ │ ├── t633.scala │ │ │ ├── t6335.check │ │ │ ├── t6335.scala │ │ │ ├── t6336.check │ │ │ ├── t6336.scala │ │ │ ├── t6337.check │ │ │ ├── t6337.scala │ │ │ ├── t6340.check │ │ │ ├── t6340.scala │ │ │ ├── t6355a.check │ │ │ ├── t6355a.scala │ │ │ ├── t6355b.check │ │ │ ├── t6355b.scala │ │ │ ├── t6357.check │ │ │ ├── t6357.scala │ │ │ ├── t6359.check │ │ │ ├── t6359.scala │ │ │ ├── t639.check │ │ │ ├── t639.scala │ │ │ ├── t6406-regextract.check │ │ │ ├── t6406-regextract.scala │ │ │ ├── t6436.check │ │ │ ├── t6436.scala │ │ │ ├── t6436b.check │ │ │ ├── t6436b.scala │ │ │ ├── t6443c.check │ │ │ ├── t6443c.scala │ │ │ ├── t6446-additional.check │ │ │ ├── t6446-additional │ │ │ │ ├── ploogin_1.scala │ │ │ │ ├── sample_2.flags │ │ │ │ ├── sample_2.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── t6446-list.check │ │ │ ├── t6446-list │ │ │ │ ├── ploogin_1.scala │ │ │ │ ├── sample_2.flags │ │ │ │ ├── sample_2.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── t6446-missing.check │ │ │ ├── t6446-missing │ │ │ │ ├── sample_2.flags │ │ │ │ ├── sample_2.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── t6446-show-phases.check │ │ │ ├── t6446-show-phases.flags │ │ │ ├── t6446-show-phases.scala │ │ │ ├── t6455.check │ │ │ ├── t6455.scala │ │ │ ├── t6483.check │ │ │ ├── t6483.scala │ │ │ ├── t649.check │ │ │ ├── t649.scala │ │ │ ├── t650.check │ │ │ ├── t650.scala │ │ │ ├── t6526.check │ │ │ ├── t6526.scala │ │ │ ├── t6534.check │ │ │ ├── t6534.flags │ │ │ ├── t6534.scala │ │ │ ├── t6535.check │ │ │ ├── t6535.scala │ │ │ ├── t6539.check │ │ │ ├── t6539 │ │ │ │ ├── Macro_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t6558.check │ │ │ ├── t6558.scala │ │ │ ├── t6558b.check │ │ │ ├── t6558b.scala │ │ │ ├── t6563.check │ │ │ ├── t6563.scala │ │ │ ├── t6566a.check │ │ │ ├── t6566a.scala │ │ │ ├── t6566b.check │ │ │ ├── t6566b.scala │ │ │ ├── t6567.check │ │ │ ├── t6567.flags │ │ │ ├── t6567.scala │ │ │ ├── t6574.check │ │ │ ├── t6574.scala │ │ │ ├── t6582_exhaust_big.check │ │ │ ├── t6582_exhaust_big.flags │ │ │ ├── t6582_exhaust_big.scala │ │ │ ├── t6597.check │ │ │ ├── t6597.scala │ │ │ ├── t6601.check │ │ │ ├── t6601 │ │ │ │ ├── AccessPrivateConstructor_2.scala │ │ │ │ └── PrivateConstructor_1.scala │ │ │ ├── t663.check │ │ │ ├── t663.scala │ │ │ ├── t664.check │ │ │ ├── t664.scala │ │ │ ├── t6663.check │ │ │ ├── t6663.scala │ │ │ ├── t6666.check │ │ │ ├── t6666.flags │ │ │ ├── t6666.scala │ │ │ ├── t6666b.check │ │ │ ├── t6666b.scala │ │ │ ├── t6666c.check │ │ │ ├── t6666c.flags │ │ │ ├── t6666c.scala │ │ │ ├── t6666e.check │ │ │ ├── t6666e.scala │ │ │ ├── t6667.check │ │ │ ├── t6667.scala │ │ │ ├── t6667b.check │ │ │ ├── t6667b.scala │ │ │ ├── t667.check │ │ │ ├── t667.scala │ │ │ ├── t6675.check │ │ │ ├── t6675.flags │ │ │ ├── t6675.scala │ │ │ ├── t6675b.check │ │ │ ├── t6675b.flags │ │ │ ├── t6675b.scala │ │ │ ├── t668.check │ │ │ ├── t668.scala │ │ │ ├── t6680a.check │ │ │ ├── t6680a.flags │ │ │ ├── t6680a.scala │ │ │ ├── t6714.check │ │ │ ├── t6714.scala │ │ │ ├── t6728.check │ │ │ ├── t6728.scala │ │ │ ├── t6758.check │ │ │ ├── t6758.scala │ │ │ ├── t677.check │ │ │ ├── t677.scala │ │ │ ├── t6771b.check │ │ │ ├── t6771b.scala │ │ │ ├── t6788.check │ │ │ ├── t6788.scala │ │ │ ├── t6795.check │ │ │ ├── t6795.scala │ │ │ ├── t6810.check │ │ │ ├── t6810.scala │ │ │ ├── t6815.check │ │ │ ├── t6815.scala │ │ │ ├── t6829.check │ │ │ ├── t6829.scala │ │ │ ├── t6844.check │ │ │ ├── t6844.scala │ │ │ ├── t6889.check │ │ │ ├── t6889.scala │ │ │ ├── t6895.check │ │ │ ├── t6895.scala │ │ │ ├── t6895b.check │ │ │ ├── t6895b.scala │ │ │ ├── t6902.check │ │ │ ├── t6902.flags │ │ │ ├── t6902.scala │ │ │ ├── t691.check │ │ │ ├── t691.scala │ │ │ ├── t6912.check │ │ │ ├── t6912.scala │ │ │ ├── t692.check │ │ │ ├── t692.scala │ │ │ ├── t6920.check │ │ │ ├── t6920.scala │ │ │ ├── t6928.check │ │ │ ├── t6928.scala │ │ │ ├── t693.check │ │ │ ├── t693.scala │ │ │ ├── t6931.check │ │ │ ├── t6931 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t6934.check │ │ │ ├── t6934 │ │ │ │ ├── JavaClass.java │ │ │ │ ├── ScalaClass.scala │ │ │ │ └── ScalaMain.scala │ │ │ ├── t6952.check │ │ │ ├── t6952.scala │ │ │ ├── t696.check │ │ │ ├── t696.scala │ │ │ ├── t6963a.check │ │ │ ├── t6963a.flags │ │ │ ├── t6963a.scala │ │ │ ├── t6988.check │ │ │ ├── t6988.scala │ │ │ ├── t700.check │ │ │ ├── t700.scala │ │ │ ├── t7007.check │ │ │ ├── t7007.scala │ │ │ ├── t7014.check │ │ │ ├── t7014.flags │ │ │ ├── t7014 │ │ │ │ ├── ThreadSafetyLevel_1.java │ │ │ │ ├── ThreadSafety_1.java │ │ │ │ └── t7014_2.scala │ │ │ ├── t7020.check │ │ │ ├── t7020.flags │ │ │ ├── t7020.scala │ │ │ ├── t7046-2.check │ │ │ ├── t7046-2 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7046.check │ │ │ ├── t7046 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t708.check │ │ │ ├── t708.scala │ │ │ ├── t7110.check │ │ │ ├── t7110.flags │ │ │ ├── t7110.scala │ │ │ ├── t712.check │ │ │ ├── t712.scala │ │ │ ├── t715.check │ │ │ ├── t715.scala │ │ │ ├── t7157.check │ │ │ ├── t7157 │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7171.check │ │ │ ├── t7171.flags │ │ │ ├── t7171.scala │ │ │ ├── t7171b.check │ │ │ ├── t7171b.flags │ │ │ ├── t7171b.scala │ │ │ ├── t7187-2.13.check │ │ │ ├── t7187-2.13.flags │ │ │ ├── t7187-2.13.scala │ │ │ ├── t7187.check │ │ │ ├── t7187.flags │ │ │ ├── t7187.scala │ │ │ ├── t7214neg.check │ │ │ ├── t7214neg.scala │ │ │ ├── t7235.check │ │ │ ├── t7235.scala │ │ │ ├── t7238.check │ │ │ ├── t7238.scala │ │ │ ├── t7239.check │ │ │ ├── t7239.scala │ │ │ ├── t7251.check │ │ │ ├── t7251 │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── t7259.check │ │ │ ├── t7259.scala │ │ │ ├── t7285.check │ │ │ ├── t7285.flags │ │ │ ├── t7285.scala │ │ │ ├── t7289.check │ │ │ ├── t7289.scala │ │ │ ├── t7289_status_quo.check │ │ │ ├── t7289_status_quo.scala │ │ │ ├── t729.check │ │ │ ├── t729.scala │ │ │ ├── t7290.check │ │ │ ├── t7290.flags │ │ │ ├── t7290.scala │ │ │ ├── t7292-deprecation.check │ │ │ ├── t7292-deprecation.flags │ │ │ ├── t7292-deprecation.scala │ │ │ ├── t7292-removal.check │ │ │ ├── t7292-removal.flags │ │ │ ├── t7292-removal.scala │ │ │ ├── t7294.check │ │ │ ├── t7294.scala │ │ │ ├── t7294b.check │ │ │ ├── t7294b.scala │ │ │ ├── t7299.check │ │ │ ├── t7299.scala │ │ │ ├── t7324.check │ │ │ ├── t7324.scala │ │ │ ├── t7325.check │ │ │ ├── t7325.scala │ │ │ ├── t7330.check │ │ │ ├── t7330.scala │ │ │ ├── t7369.check │ │ │ ├── t7369.flags │ │ │ ├── t7369.scala │ │ │ ├── t7385.check │ │ │ ├── t7385.scala │ │ │ ├── t7388.check │ │ │ ├── t7388.scala │ │ │ ├── t742.check │ │ │ ├── t742.scala │ │ │ ├── t7473.check │ │ │ ├── t7473.scala │ │ │ ├── t7475c.check │ │ │ ├── t7475c.scala │ │ │ ├── t7475e.check │ │ │ ├── t7475e.scala │ │ │ ├── t7475f.check │ │ │ ├── t7475f.scala │ │ │ ├── t7494-after-terminal.check │ │ │ ├── t7494-after-terminal │ │ │ │ ├── ThePlugin.scala │ │ │ │ ├── sample_2.flags │ │ │ │ ├── sample_2.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── t7494-before-parser.check │ │ │ ├── t7494-before-parser │ │ │ │ ├── ThePlugin.scala │ │ │ │ ├── sample_2.flags │ │ │ │ ├── sample_2.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── t7494-multi-right-after.check │ │ │ ├── t7494-multi-right-after │ │ │ │ ├── ThePlugin.scala │ │ │ │ ├── sample_2.flags │ │ │ │ ├── sample_2.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── t7494-no-options.check │ │ │ ├── t7494-no-options │ │ │ │ ├── ploogin_1.scala │ │ │ │ ├── sample_2.flags │ │ │ │ ├── sample_2.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── t7494-right-after-before.check │ │ │ ├── t7494-right-after-before │ │ │ │ ├── ThePlugin.scala │ │ │ │ ├── sample_2.flags │ │ │ │ ├── sample_2.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── t7494-right-after-terminal.check │ │ │ ├── t7494-right-after-terminal │ │ │ │ ├── ThePlugin.scala │ │ │ │ ├── sample_2.flags │ │ │ │ ├── sample_2.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── t750.check │ │ │ ├── t750 │ │ │ │ ├── AO_1.java │ │ │ │ └── Test_2.scala │ │ │ ├── t7501.check │ │ │ ├── t7501 │ │ │ │ ├── t7501_1.scala │ │ │ │ └── t7501_2.scala │ │ │ ├── t7507.check │ │ │ ├── t7507.scala │ │ │ ├── t7509.check │ │ │ ├── t7509.scala │ │ │ ├── t750b.check │ │ │ ├── t750b │ │ │ │ ├── AO.java │ │ │ │ └── Test.scala │ │ │ ├── t7519-b.check │ │ │ ├── t7519-b │ │ │ │ ├── Mac_1.scala │ │ │ │ └── Use_2.scala │ │ │ ├── t7519.check │ │ │ ├── t7519.scala │ │ │ ├── t752.check │ │ │ ├── t752.scala │ │ │ ├── t7602.check │ │ │ ├── t7602.scala │ │ │ ├── t7605-deprecation.check │ │ │ ├── t7605-deprecation.flags │ │ │ ├── t7605-deprecation.scala │ │ │ ├── t7622-cyclic-dependency.check │ │ │ ├── t7622-cyclic-dependency │ │ │ │ ├── ThePlugin.scala │ │ │ │ ├── sample_2.flags │ │ │ │ ├── sample_2.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── t7622-missing-dependency.check │ │ │ ├── t7622-missing-dependency │ │ │ │ ├── ThePlugin.scala │ │ │ │ ├── sample_2.flags │ │ │ │ ├── sample_2.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── t7622-missing-required.check │ │ │ ├── t7622-missing-required.flags │ │ │ ├── t7622-missing-required.scala │ │ │ ├── t7622-multi-followers.check │ │ │ ├── t7622-multi-followers │ │ │ │ ├── ThePlugin.scala │ │ │ │ ├── sample_2.flags │ │ │ │ ├── sample_2.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── t7623.check │ │ │ ├── t7623.flags │ │ │ ├── t7623.scala │ │ │ ├── t7629-view-bounds-deprecation.check │ │ │ ├── t7629-view-bounds-deprecation.flags │ │ │ ├── t7629-view-bounds-deprecation.scala │ │ │ ├── t7636.check │ │ │ ├── t7636.scala │ │ │ ├── t765.check │ │ │ ├── t765.scala │ │ │ ├── t766.check │ │ │ ├── t766.scala │ │ │ ├── t7669.check │ │ │ ├── t7669.flags │ │ │ ├── t7669.scala │ │ │ ├── t771.check │ │ │ ├── t771.scala │ │ │ ├── t7715.check │ │ │ ├── t7715.scala │ │ │ ├── t7721.check │ │ │ ├── t7721.flags │ │ │ ├── t7721.scala │ │ │ ├── t7752.check │ │ │ ├── t7752.scala │ │ │ ├── t7756a.check │ │ │ ├── t7756a.scala │ │ │ ├── t7756b.check │ │ │ ├── t7756b.flags │ │ │ ├── t7756b.scala │ │ │ ├── t7757a.check │ │ │ ├── t7757a.scala │ │ │ ├── t7757b.check │ │ │ ├── t7757b.scala │ │ │ ├── t7783.check │ │ │ ├── t7783.flags │ │ │ ├── t7783.scala │ │ │ ├── t779.check │ │ │ ├── t779.scala │ │ │ ├── t783.check │ │ │ ├── t783.scala │ │ │ ├── t7834neg.check │ │ │ ├── t7834neg.scala │ │ │ ├── t7848-interp-warn.check │ │ │ ├── t7848-interp-warn.flags │ │ │ ├── t7848-interp-warn.scala │ │ │ ├── t7850.check │ │ │ ├── t7850.scala │ │ │ ├── t7859.check │ │ │ ├── t7859 │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── t7860.check │ │ │ ├── t7860.flags │ │ │ ├── t7860.scala │ │ │ ├── t7870.check │ │ │ ├── t7870.scala │ │ │ ├── t7872.check │ │ │ ├── t7872.scala │ │ │ ├── t7872b.check │ │ │ ├── t7872b.scala │ │ │ ├── t7872c.check │ │ │ ├── t7872c.scala │ │ │ ├── t7877.check │ │ │ ├── t7877.scala │ │ │ ├── t7895.check │ │ │ ├── t7895.scala │ │ │ ├── t7895b.check │ │ │ ├── t7895b.scala │ │ │ ├── t7895c.check │ │ │ ├── t7895c.scala │ │ │ ├── t7897.check │ │ │ ├── t7897.scala │ │ │ ├── t7899.check │ │ │ ├── t7899.scala │ │ │ ├── t7967.check │ │ │ ├── t7967.scala │ │ │ ├── t798.check │ │ │ ├── t798.scala │ │ │ ├── t7980.check │ │ │ ├── t7980.scala │ │ │ ├── t7984.check │ │ │ ├── t7984.flags │ │ │ ├── t7984.scala │ │ │ ├── t800.check │ │ │ ├── t800.scala │ │ │ ├── t8002-nested-scope.check │ │ │ ├── t8002-nested-scope.scala │ │ │ ├── t8006.check │ │ │ ├── t8006.scala │ │ │ ├── t8015-ffa.check │ │ │ ├── t8015-ffa.scala │ │ │ ├── t8015-ffb.check │ │ │ ├── t8015-ffb.flags │ │ │ ├── t8015-ffb.scala │ │ │ ├── t8024.check │ │ │ ├── t8024.scala │ │ │ ├── t8024b.check │ │ │ ├── t8024b.scala │ │ │ ├── t8035-deprecated.check │ │ │ ├── t8035-deprecated.flags │ │ │ ├── t8035-deprecated.scala │ │ │ ├── t8035-no-adapted-args.check │ │ │ ├── t8035-no-adapted-args.flags │ │ │ ├── t8035-no-adapted-args.scala │ │ │ ├── t8035-removed.check │ │ │ ├── t8035-removed.flags │ │ │ ├── t8035-removed.scala │ │ │ ├── t8044-b.check │ │ │ ├── t8044-b.scala │ │ │ ├── t8044.check │ │ │ ├── t8044.scala │ │ │ ├── t8079a.check │ │ │ ├── t8079a.scala │ │ │ ├── t8104.check │ │ │ ├── t8104 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8127a.check │ │ │ ├── t8127a.scala │ │ │ ├── t8143a.check │ │ │ ├── t8143a.scala │ │ │ ├── t8146-non-finitary-2.check │ │ │ ├── t8146-non-finitary-2.scala │ │ │ ├── t8146-non-finitary.check │ │ │ ├── t8146-non-finitary.scala │ │ │ ├── t8157.check │ │ │ ├── t8157.scala │ │ │ ├── t8158.check │ │ │ ├── t8158 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8177a.check │ │ │ ├── t8177a.scala │ │ │ ├── t8182.check │ │ │ ├── t8182.scala │ │ │ ├── t8207.check │ │ │ ├── t8207.scala │ │ │ ├── t8217-local-alias-requires-rhs.check │ │ │ ├── t8217-local-alias-requires-rhs.scala │ │ │ ├── t8219-any-any-ref-equals.check │ │ │ ├── t8219-any-any-ref-equals.scala │ │ │ ├── t8228.check │ │ │ ├── t8228.scala │ │ │ ├── t8229.check │ │ │ ├── t8229.scala │ │ │ ├── t8237-default.check │ │ │ ├── t8237-default.scala │ │ │ ├── t8244.check │ │ │ ├── t8244 │ │ │ │ ├── Raw_1.java │ │ │ │ └── Test_2.scala │ │ │ ├── t8244b.check │ │ │ ├── t8244b.scala │ │ │ ├── t8244c.check │ │ │ ├── t8244c.scala │ │ │ ├── t8244e.check │ │ │ ├── t8244e │ │ │ │ ├── Raw.java │ │ │ │ └── Test.scala │ │ │ ├── t8265.check │ │ │ ├── t8265.flags │ │ │ ├── t8265.scala │ │ │ ├── t8266-invalid-interp.check │ │ │ ├── t8266-invalid-interp.scala │ │ │ ├── t8291.check │ │ │ ├── t8291.scala │ │ │ ├── t8300-overloading.check │ │ │ ├── t8300-overloading.scala │ │ │ ├── t8325-b.check │ │ │ ├── t8325-b.scala │ │ │ ├── t8325-c.check │ │ │ ├── t8325-c.scala │ │ │ ├── t8325.check │ │ │ ├── t8325.scala │ │ │ ├── t835.check │ │ │ ├── t835.scala │ │ │ ├── t836.check │ │ │ ├── t836.scala │ │ │ ├── t8372.check │ │ │ ├── t8372.scala │ │ │ ├── t8376.check │ │ │ ├── t8376 │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t8417.check │ │ │ ├── t8417.flags │ │ │ ├── t8417.scala │ │ │ ├── t8430.check │ │ │ ├── t8430.flags │ │ │ ├── t8430.scala │ │ │ ├── t8431.check │ │ │ ├── t8431.scala │ │ │ ├── t8450.check │ │ │ ├── t8450.flags │ │ │ ├── t8450.scala │ │ │ ├── t846.check │ │ │ ├── t846.scala │ │ │ ├── t8463.check │ │ │ ├── t8463.scala │ │ │ ├── t8525.check │ │ │ ├── t8525.flags │ │ │ ├── t8525.scala │ │ │ ├── t8534.check │ │ │ ├── t8534.scala │ │ │ ├── t8534b.check │ │ │ ├── t8534b.scala │ │ │ ├── t856.check │ │ │ ├── t856.scala │ │ │ ├── t8597.check │ │ │ ├── t8597.flags │ │ │ ├── t8597.scala │ │ │ ├── t8597b.check │ │ │ ├── t8597b.flags │ │ │ ├── t8597b.scala │ │ │ ├── t8610-arg.check │ │ │ ├── t8610-arg.flags │ │ │ ├── t8610-arg.scala │ │ │ ├── t8610.check │ │ │ ├── t8610.flags │ │ │ ├── t8610.scala │ │ │ ├── t8630.check │ │ │ ├── t8630.scala │ │ │ ├── t8667.check │ │ │ ├── t8667.scala │ │ │ ├── t8675.check │ │ │ ├── t8675.scala │ │ │ ├── t8675b.check │ │ │ ├── t8675b.scala │ │ │ ├── t8685.check │ │ │ ├── t8685.flags │ │ │ ├── t8685.scala │ │ │ ├── t8700a.check │ │ │ ├── t8700a.flags │ │ │ ├── t8700a │ │ │ │ ├── Bar.scala │ │ │ │ ├── Baz.java │ │ │ │ └── Foo.java │ │ │ ├── t8700b.check │ │ │ ├── t8700b.flags │ │ │ ├── t8700b │ │ │ │ ├── Bar_2.scala │ │ │ │ ├── Baz_1.java │ │ │ │ └── Foo_1.java │ │ │ ├── t8704.check │ │ │ ├── t8704.flags │ │ │ ├── t8704.scala │ │ │ ├── t8731.check │ │ │ ├── t8731.flags │ │ │ ├── t8731.scala │ │ │ ├── t8736-c.check │ │ │ ├── t8736-c.flags │ │ │ ├── t8736-c.scala │ │ │ ├── t875.check │ │ │ ├── t875.scala │ │ │ ├── t876.check │ │ │ ├── t876.scala │ │ │ ├── t8763.check │ │ │ ├── t8763.scala │ │ │ ├── t877.check │ │ │ ├── t877.scala │ │ │ ├── t8777.check │ │ │ ├── t8777.scala │ │ │ ├── t882.check │ │ │ ├── t882.scala │ │ │ ├── t8841.check │ │ │ ├── t8841.scala │ │ │ ├── t8849.check │ │ │ ├── t8849.scala │ │ │ ├── t8869.check │ │ │ ├── t8869.scala │ │ │ ├── t8890.check │ │ │ ├── t8890.scala │ │ │ ├── t8892.check │ │ │ ├── t8892.scala │ │ │ ├── t8989.check │ │ │ ├── t8989.scala │ │ │ ├── t900.check │ │ │ ├── t900.scala │ │ │ ├── t9008.check │ │ │ ├── t9008.scala │ │ │ ├── t9008b.check │ │ │ ├── t9008b.scala │ │ │ ├── t9041.check │ │ │ ├── t9041.scala │ │ │ ├── t9045.check │ │ │ ├── t9045.scala │ │ │ ├── t908.check │ │ │ ├── t908.scala │ │ │ ├── t909.check │ │ │ ├── t909.scala │ │ │ ├── t9093.check │ │ │ ├── t9093.scala │ │ │ ├── t910.check │ │ │ ├── t910.scala │ │ │ ├── t9127.check │ │ │ ├── t9127.flags │ │ │ ├── t9127.scala │ │ │ ├── t9138.check │ │ │ ├── t9138.scala │ │ │ ├── t9231.check │ │ │ ├── t9231.scala │ │ │ ├── t9273.check │ │ │ ├── t9273.scala │ │ │ ├── t9286a.check │ │ │ ├── t9286a.scala │ │ │ ├── t9286b.check │ │ │ ├── t9286b.scala │ │ │ ├── t9286c.check │ │ │ ├── t9286c.scala │ │ │ ├── t935.check │ │ │ ├── t935.scala │ │ │ ├── t9361.check │ │ │ ├── t9361.scala │ │ │ ├── t9382.check │ │ │ ├── t9382.scala │ │ │ ├── t9398.check │ │ │ ├── t9398.flags │ │ │ ├── t9398 │ │ │ │ ├── data.scala │ │ │ │ └── match.scala │ │ │ ├── t9401.check │ │ │ ├── t9401.scala │ │ │ ├── t944.check │ │ │ ├── t944.scala │ │ │ ├── t9527a.check │ │ │ ├── t9527a.scala │ │ │ ├── t9527b.check │ │ │ ├── t9527b.scala │ │ │ ├── t9535.check │ │ │ ├── t9535.scala │ │ │ ├── t9572.check │ │ │ ├── t9572.scala │ │ │ ├── t961.check │ │ │ ├── t961.scala │ │ │ ├── t9629.check │ │ │ ├── t9629.scala │ │ │ ├── t963.check │ │ │ ├── t963.scala │ │ │ ├── t9636.check │ │ │ ├── t9636.flags │ │ │ ├── t9636.scala │ │ │ ├── t963b.check │ │ │ ├── t963b.scala │ │ │ ├── t9675.check │ │ │ ├── t9675.flags │ │ │ ├── t9675.scala │ │ │ ├── t9684.check │ │ │ ├── t9684.flags │ │ │ ├── t9684.scala │ │ │ ├── t9684b.check │ │ │ ├── t9684b.scala │ │ │ ├── t9781.check │ │ │ ├── t9781.scala │ │ │ ├── t9834.check │ │ │ ├── t9834.scala │ │ │ ├── t9847.check │ │ │ ├── t9847.flags │ │ │ ├── t9847.scala │ │ │ ├── t9849.check │ │ │ ├── t9849.scala │ │ │ ├── t987.check │ │ │ ├── t987.scala │ │ │ ├── t9953.check │ │ │ ├── t9953.flags │ │ │ ├── t9953.scala │ │ │ ├── t997.check │ │ │ ├── t997.scala │ │ │ ├── tailrec-2.check │ │ │ ├── tailrec-2.scala │ │ │ ├── tailrec-3.check │ │ │ ├── tailrec-3.scala │ │ │ ├── tailrec-4.check │ │ │ ├── tailrec-4.scala │ │ │ ├── tailrec.check │ │ │ ├── tailrec.scala │ │ │ ├── tcpoly_bounds.check │ │ │ ├── tcpoly_bounds.scala │ │ │ ├── tcpoly_infer_ticket1162.check │ │ │ ├── tcpoly_infer_ticket1162.scala │ │ │ ├── tcpoly_override.check │ │ │ ├── tcpoly_override.scala │ │ │ ├── tcpoly_ticket2101.check │ │ │ ├── tcpoly_ticket2101.scala │ │ │ ├── tcpoly_typealias.check │ │ │ ├── tcpoly_typealias.scala │ │ │ ├── tcpoly_variance.check │ │ │ ├── tcpoly_variance.scala │ │ │ ├── tcpoly_variance_enforce.check │ │ │ ├── tcpoly_variance_enforce.scala │ │ │ ├── ticket513.check │ │ │ ├── ticket513.scala │ │ │ ├── trailing-commas.check │ │ │ ├── trailing-commas.scala │ │ │ ├── trait-defaults-super.check │ │ │ ├── trait-defaults-super.scala │ │ │ ├── trait-no-native.check │ │ │ ├── trait-no-native.scala │ │ │ ├── trait_fields_conflicts.check │ │ │ ├── trait_fields_conflicts.scala │ │ │ ├── trait_fields_deprecated_overriding.check │ │ │ ├── trait_fields_deprecated_overriding.flags │ │ │ ├── trait_fields_deprecated_overriding.scala │ │ │ ├── trait_fields_var_override.check │ │ │ ├── trait_fields_var_override.scala │ │ │ ├── type-diagnostics.check │ │ │ ├── type-diagnostics.scala │ │ │ ├── typeerror.check │ │ │ ├── typeerror.scala │ │ │ ├── unchecked-abstract.check │ │ │ ├── unchecked-abstract.flags │ │ │ ├── unchecked-abstract.scala │ │ │ ├── unchecked-impossible.check │ │ │ ├── unchecked-impossible.flags │ │ │ ├── unchecked-impossible.scala │ │ │ ├── unchecked-knowable.check │ │ │ ├── unchecked-knowable.flags │ │ │ ├── unchecked-knowable.scala │ │ │ ├── unchecked-refinement.check │ │ │ ├── unchecked-refinement.flags │ │ │ ├── unchecked-refinement.scala │ │ │ ├── unchecked-suppress.check │ │ │ ├── unchecked-suppress.flags │ │ │ ├── unchecked-suppress.scala │ │ │ ├── unchecked.check │ │ │ ├── unchecked.flags │ │ │ ├── unchecked.scala │ │ │ ├── unchecked2.check │ │ │ ├── unchecked2.flags │ │ │ ├── unchecked2.scala │ │ │ ├── unchecked3.check │ │ │ ├── unchecked3.flags │ │ │ ├── unchecked3.scala │ │ │ ├── unicode-unterminated-quote.check │ │ │ ├── unicode-unterminated-quote.scala │ │ │ ├── unit-returns-value.check │ │ │ ├── unit-returns-value.flags │ │ │ ├── unit-returns-value.scala │ │ │ ├── unit2anyref.check │ │ │ ├── unit2anyref.scala │ │ │ ├── unreachablechar.check │ │ │ ├── unreachablechar.flags │ │ │ ├── unreachablechar.scala │ │ │ ├── userdefined_apply.check │ │ │ ├── userdefined_apply.scala │ │ │ ├── val_infer.check │ │ │ ├── val_infer.scala │ │ │ ├── val_sig_infer_match.check │ │ │ ├── val_sig_infer_match.scala │ │ │ ├── val_sig_infer_struct.check │ │ │ ├── val_sig_infer_struct.scala │ │ │ ├── valueclasses-doubledefs.check │ │ │ ├── valueclasses-doubledefs.scala │ │ │ ├── valueclasses-impl-restrictions.check │ │ │ ├── valueclasses-impl-restrictions.scala │ │ │ ├── valueclasses-pavlov.check │ │ │ ├── valueclasses-pavlov.scala │ │ │ ├── valueclasses.check │ │ │ ├── valueclasses.scala │ │ │ ├── varargs.check │ │ │ ├── varargs.scala │ │ │ ├── variances-refinement.check │ │ │ ├── variances-refinement.scala │ │ │ ├── variances.check │ │ │ ├── variances.scala │ │ │ ├── variances2.check │ │ │ ├── variances2.scala │ │ │ ├── viewtest.check │ │ │ ├── viewtest.scala │ │ │ ├── virtpatmat_exhaust_big.check │ │ │ ├── virtpatmat_exhaust_big.flags │ │ │ ├── virtpatmat_exhaust_big.scala │ │ │ ├── virtpatmat_exhaust_compound.check │ │ │ ├── virtpatmat_exhaust_compound.flags │ │ │ ├── virtpatmat_exhaust_compound.scala │ │ │ ├── virtpatmat_reach_null.check │ │ │ ├── virtpatmat_reach_null.flags │ │ │ ├── virtpatmat_reach_null.scala │ │ │ ├── virtpatmat_reach_sealed_unsealed.check │ │ │ ├── virtpatmat_reach_sealed_unsealed.flags │ │ │ ├── virtpatmat_reach_sealed_unsealed.scala │ │ │ ├── virtpatmat_unreach_select.check │ │ │ ├── virtpatmat_unreach_select.flags │ │ │ ├── virtpatmat_unreach_select.scala │ │ │ ├── volatile-intersection.check │ │ │ ├── volatile-intersection.scala │ │ │ ├── volatile.check │ │ │ ├── volatile.scala │ │ │ ├── volatile_no_override.check │ │ │ ├── volatile_no_override.scala │ │ │ ├── warn-inferred-any.check │ │ │ ├── warn-inferred-any.flags │ │ │ ├── warn-inferred-any.scala │ │ │ ├── warn-unused-implicits.check │ │ │ ├── warn-unused-implicits.flags │ │ │ ├── warn-unused-implicits.scala │ │ │ ├── warn-unused-imports.check │ │ │ ├── warn-unused-imports.flags │ │ │ ├── warn-unused-imports │ │ │ │ ├── sample_1.scala │ │ │ │ └── warn-unused-imports_2.scala │ │ │ ├── warn-unused-params.check │ │ │ ├── warn-unused-params.flags │ │ │ ├── warn-unused-params.scala │ │ │ ├── warn-unused-patvars.check │ │ │ ├── warn-unused-patvars.flags │ │ │ ├── warn-unused-patvars.scala │ │ │ ├── warn-unused-privates.check │ │ │ ├── warn-unused-privates.flags │ │ │ ├── warn-unused-privates.scala │ │ │ ├── warn-useless-svuid.check │ │ │ ├── warn-useless-svuid.flags │ │ │ ├── warn-useless-svuid.scala │ │ │ ├── wellkinded_app.check │ │ │ ├── wellkinded_app.scala │ │ │ ├── wellkinded_app2.check │ │ │ ├── wellkinded_app2.scala │ │ │ ├── wellkinded_bounds.check │ │ │ ├── wellkinded_bounds.scala │ │ │ ├── wellkinded_wrongarity.check │ │ │ ├── wellkinded_wrongarity.scala │ │ │ ├── wellkinded_wrongarity2.check │ │ │ ├── wellkinded_wrongarity2.scala │ │ │ ├── wrong-args-for-none.check │ │ │ ├── wrong-args-for-none.scala │ │ │ ├── xmlcorner.check │ │ │ ├── xmlcorner.scala │ │ │ ├── xmltruncated1.check │ │ │ ├── xmltruncated1.scala │ │ │ ├── xmltruncated2.check │ │ │ ├── xmltruncated2.scala │ │ │ ├── xmltruncated3.check │ │ │ ├── xmltruncated3.scala │ │ │ ├── xmltruncated4.check │ │ │ ├── xmltruncated4.scala │ │ │ ├── xmltruncated5.check │ │ │ ├── xmltruncated5.scala │ │ │ ├── xmltruncated6.check │ │ │ ├── xmltruncated6.scala │ │ │ ├── xmltruncated7.check │ │ │ └── xmltruncated7.scala │ │ ├── pos │ │ │ ├── A.scala │ │ │ ├── CustomGlobal.scala │ │ │ ├── FPTest.scala │ │ │ ├── List1.scala │ │ │ ├── MailBox.scala │ │ │ ├── NoCyclicReference.scala │ │ │ ├── S1.scala │ │ │ ├── S3.scala │ │ │ ├── S5.scala │ │ │ ├── S8.scala │ │ │ ├── Transactions.scala │ │ │ ├── X.scala │ │ │ ├── Z.scala │ │ │ ├── abstract.scala │ │ │ ├── aliases.scala │ │ │ ├── alladin763.scala │ │ │ ├── annot-inner.scala │ │ │ ├── annotDepMethType.scala │ │ │ ├── annotated-original │ │ │ │ ├── C_2.scala │ │ │ │ └── M_1.scala │ │ │ ├── annotated-treecopy.flags │ │ │ ├── annotated-treecopy │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── annotations.scala │ │ │ ├── annotations2.scala │ │ │ ├── array-interfaces.scala │ │ │ ├── arrays2.scala │ │ │ ├── arrays3.scala │ │ │ ├── attachments-typed-another-ident.flags │ │ │ ├── attachments-typed-another-ident │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── attachments-typed-ident.flags │ │ │ ├── attachments-typed-ident │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── attributes.scala │ │ │ ├── bcode_throw_null │ │ │ │ └── TN.scala │ │ │ ├── bounds.scala │ │ │ ├── builders.scala │ │ │ ├── caseClassInMethod.scala │ │ │ ├── caseaccs.scala │ │ │ ├── cfcrash.scala │ │ │ ├── chang │ │ │ │ ├── Outer.java │ │ │ │ └── Test.scala │ │ │ ├── channels.scala │ │ │ ├── classtag-pos.flags │ │ │ ├── classtag-pos.scala │ │ │ ├── cls.scala │ │ │ ├── cls1.scala │ │ │ ├── clsrefine.scala │ │ │ ├── collectGenericCC.scala │ │ │ ├── collections.scala │ │ │ ├── comp-rec-test.flags │ │ │ ├── comp-rec-test.scala │ │ │ ├── compile.scala │ │ │ ├── compile1.scala │ │ │ ├── compound.scala │ │ │ ├── constant-warning.check │ │ │ ├── constant-warning.flags │ │ │ ├── constant-warning.scala │ │ │ ├── constfold.scala │ │ │ ├── context.scala │ │ │ ├── contextbounds-implicits-new.scala │ │ │ ├── contextbounds-implicits-old.scala │ │ │ ├── contrib467.scala │ │ │ ├── contrib701.scala │ │ │ ├── cycle-jsoup.flags │ │ │ ├── cycle-jsoup.scala │ │ │ ├── cycle.flags │ │ │ ├── cycle │ │ │ │ ├── J_1.java │ │ │ │ └── X_2.scala │ │ │ ├── cyclics-pos.scala │ │ │ ├── debug-reset-local-attrs.flags │ │ │ ├── debug-reset-local-attrs.scala │ │ │ ├── delambdafy-lambdalift.scala │ │ │ ├── delambdafy-patterns.scala │ │ │ ├── delambdafy_t6260_method.check │ │ │ ├── delambdafy_t6260_method.flags │ │ │ ├── delambdafy_t6260_method.scala │ │ │ ├── depexists.scala │ │ │ ├── depmet_1_pos.scala │ │ │ ├── depmet_implicit_chaining_zw.scala │ │ │ ├── depmet_implicit_norm_ret.scala │ │ │ ├── depmet_implicit_oopsla_session.scala │ │ │ ├── depmet_implicit_oopsla_session_2.scala │ │ │ ├── depmet_implicit_oopsla_session_simpler.scala │ │ │ ├── depmet_implicit_oopsla_zipwith.scala │ │ │ ├── depmet_implicit_tpbetareduce.scala │ │ │ ├── dotless-targs-ranged.flags │ │ │ ├── dotless-targs-ranged.scala │ │ │ ├── dotless-targs.flags │ │ │ ├── dotless-targs.scala │ │ │ ├── elidable-tparams.scala │ │ │ ├── erasure-nsquared.scala │ │ │ ├── escapes2.scala │ │ │ ├── eta.scala │ │ │ ├── exbound.scala │ │ │ ├── exhaust_2.scala │ │ │ ├── exhaust_alternatives.flags │ │ │ ├── exhaust_alternatives.scala │ │ │ ├── exhaustive_heuristics.scala │ │ │ ├── existental-slow-compile2.scala │ │ │ ├── existential-java-case-class │ │ │ │ ├── Client.scala │ │ │ │ └── J.java │ │ │ ├── existential-slow-compile1.flags │ │ │ ├── existential-slow-compile1.scala │ │ │ ├── existentials-harmful.scala │ │ │ ├── existentials.scala │ │ │ ├── exponential-spec.scala │ │ │ ├── extractor-types.scala │ │ │ ├── fields_widen_trait_var.scala │ │ │ ├── five-dot-f.scala │ │ │ ├── fun_undo_eta.scala │ │ │ ├── functions.scala │ │ │ ├── gadt-gilles.scala │ │ │ ├── gadts2.scala │ │ │ ├── gen-traversable-methods.scala │ │ │ ├── generic-sigs.flags │ │ │ ├── generic-sigs.scala │ │ │ ├── getClassType.scala │ │ │ ├── gosh.scala │ │ │ ├── gui.scala │ │ │ ├── hashhash-overloads.scala │ │ │ ├── hk-infer.scala │ │ │ ├── hk-match │ │ │ │ ├── a.scala │ │ │ │ └── b.scala │ │ │ ├── hkarray.flags │ │ │ ├── hkarray.scala │ │ │ ├── hkgadt.scala │ │ │ ├── hklub0.scala │ │ │ ├── hkrange.scala │ │ │ ├── homonym.scala │ │ │ ├── ilya │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── ilya2 │ │ │ │ ├── A.scala │ │ │ │ ├── B.java │ │ │ │ └── Nullable.java │ │ │ ├── imp2-pos.scala │ │ │ ├── implicit-anyval-2.10.flags │ │ │ ├── implicit-anyval-2.10.scala │ │ │ ├── implicit-infix-ops.scala │ │ │ ├── implicit-unwrap-tc.scala │ │ │ ├── implicits-new.scala │ │ │ ├── implicits-old.scala │ │ │ ├── imports-pos.scala │ │ │ ├── infer.scala │ │ │ ├── infer2-pos.scala │ │ │ ├── infer_override_def_args.flags │ │ │ ├── infer_override_def_args.scala │ │ │ ├── inferbroadtype.scala │ │ │ ├── infersingle.flags │ │ │ ├── infersingle.scala │ │ │ ├── init.scala │ │ │ ├── inline-access-levels.flags │ │ │ ├── inline-access-levels │ │ │ │ ├── A_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── irrefutable.scala │ │ │ ├── isApplicableSafe.scala │ │ │ ├── issue244.scala │ │ │ ├── itay.scala │ │ │ ├── iterator-traversable-mix.scala │ │ │ ├── java-access-pos │ │ │ │ ├── J.java │ │ │ │ └── S1.scala │ │ │ ├── java-type-annotations │ │ │ │ ├── NotNull.java │ │ │ │ └── Test.java │ │ │ ├── javaConversions-2.10-ambiguity.scala │ │ │ ├── javaConversions-2.10-regression.scala │ │ │ ├── javaReadsSigs │ │ │ │ └── fromjava.java │ │ │ ├── jesper.scala │ │ │ ├── kinds.scala │ │ │ ├── kinzer.scala │ │ │ ├── ksbug1.scala │ │ │ ├── lambda.scala │ │ │ ├── lambdalift.scala │ │ │ ├── lambdalift1.scala │ │ │ ├── largecasetest.scala │ │ │ ├── leibniz_liskov.scala │ │ │ ├── lexical.scala │ │ │ ├── liftcode_polymorphic.scala │ │ │ ├── list-extractor.scala │ │ │ ├── listpattern.scala │ │ │ ├── local-objects.scala │ │ │ ├── localmodules.scala │ │ │ ├── lookupswitch.scala │ │ │ ├── looping-jsig.scala │ │ │ ├── lub-dealias-widen.scala │ │ │ ├── lub-from-hell.scala │ │ │ ├── lubs.scala │ │ │ ├── macro-attachments │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-bundle-disambiguate-bundle.check │ │ │ ├── macro-bundle-disambiguate-bundle.scala │ │ │ ├── macro-bundle-disambiguate-nonbundle.check │ │ │ ├── macro-bundle-disambiguate-nonbundle.scala │ │ │ ├── macro-deprecate-dont-touch-backquotedidents.flags │ │ │ ├── macro-deprecate-dont-touch-backquotedidents.scala │ │ │ ├── macro-implicit-invalidate-on-error.check │ │ │ ├── macro-implicit-invalidate-on-error.scala │ │ │ ├── macro-qmarkqmarkqmark.scala │ │ │ ├── manifest1-new.scala │ │ │ ├── manifest1-old.scala │ │ │ ├── matthias1.scala │ │ │ ├── matthias3.scala │ │ │ ├── matthias4.scala │ │ │ ├── matthias5.scala │ │ │ ├── maxim1.scala │ │ │ ├── michel1.scala │ │ │ ├── michel2.scala │ │ │ ├── michel3.scala │ │ │ ├── michel4.scala │ │ │ ├── michel5.scala │ │ │ ├── michel6.scala │ │ │ ├── misc-unapply_pos.scala │ │ │ ├── mixins.scala │ │ │ ├── modules.scala │ │ │ ├── modules1.scala │ │ │ ├── moduletrans.scala │ │ │ ├── native-warning.flags │ │ │ ├── native-warning.scala │ │ │ ├── needstypeearly.scala │ │ │ ├── nested.scala │ │ │ ├── nested2.scala │ │ │ ├── nonlocal-unchecked.flags │ │ │ ├── nonlocal-unchecked.scala │ │ │ ├── nothing_manifest_disambig-new.scala │ │ │ ├── nothing_manifest_disambig-old.scala │ │ │ ├── null.scala │ │ │ ├── nullary.scala │ │ │ ├── nullary_poly.scala │ │ │ ├── optmatch.scala │ │ │ ├── overloaded-unapply.scala │ │ │ ├── overloaded_extractor_and_regular_def.scala │ │ │ ├── overloaded_ho_fun.scala │ │ │ ├── override-object-yes.flags │ │ │ ├── override-object-yes.scala │ │ │ ├── override.scala │ │ │ ├── overzealous-assert-genbcode.scala │ │ │ ├── package-case.scala │ │ │ ├── package-implicit │ │ │ │ ├── ActorRef.scala │ │ │ │ ├── DataFlow.scala │ │ │ │ └── package.scala │ │ │ ├── package-ob-case.flags │ │ │ ├── package-ob-case │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── packageobjs.scala │ │ │ ├── partialfun.scala │ │ │ ├── pat_gilles.scala │ │ │ ├── pat_iuli.scala │ │ │ ├── patmat-extract-tparam.scala │ │ │ ├── patmat-hk.flags │ │ │ ├── patmat-hk.scala │ │ │ ├── patmat-suppress.flags │ │ │ ├── patmat-suppress.scala │ │ │ ├── patmat.scala │ │ │ ├── patterns.scala │ │ │ ├── patterns1.scala │ │ │ ├── patterns1213.scala │ │ │ ├── patterns2.scala │ │ │ ├── patterns3.scala │ │ │ ├── philippe1.scala │ │ │ ├── philippe2.scala │ │ │ ├── philippe3.scala │ │ │ ├── philippe4.scala │ │ │ ├── pmbug.scala │ │ │ ├── polymorphic-case-class.flags │ │ │ ├── polymorphic-case-class.scala │ │ │ ├── pos-bug1210.scala │ │ │ ├── pos-bug1241.scala │ │ │ ├── presuperContext.scala │ │ │ ├── private-types-after-typer.scala │ │ │ ├── proj-rec-test.flags │ │ │ ├── proj-rec-test.scala │ │ │ ├── propagate.scala │ │ │ ├── protected-static │ │ │ │ ├── J.java │ │ │ │ ├── JavaClass.java │ │ │ │ ├── S.scala │ │ │ │ └── ScalaClass.scala │ │ │ ├── protected-t1010.scala │ │ │ ├── rangepos-anonapply.flags │ │ │ ├── rangepos-anonapply.scala │ │ │ ├── rangepos-patmat.flags │ │ │ ├── rangepos-patmat.scala │ │ │ ├── rangepos.flags │ │ │ ├── rangepos.scala │ │ │ ├── raw-map │ │ │ │ ├── J_1.java │ │ │ │ └── S_2.scala │ │ │ ├── rebind.scala │ │ │ ├── reflection-compat-api-universe.check │ │ │ ├── reflection-compat-api-universe.scala │ │ │ ├── reflection-compat-c.check │ │ │ ├── reflection-compat-c.scala │ │ │ ├── reflection-compat-macro-universe.check │ │ │ ├── reflection-compat-macro-universe.scala │ │ │ ├── reflection-compat-ru.check │ │ │ ├── reflection-compat-ru.scala │ │ │ ├── relax_implicit_divergence.scala │ │ │ ├── return_thistype.scala │ │ │ ├── sam_erasure_boundedwild.scala │ │ │ ├── sammy_ctor_arg.scala │ │ │ ├── sammy_exist.scala │ │ │ ├── sammy_extends_function.scala │ │ │ ├── sammy_implicit.scala │ │ │ ├── sammy_infer_argtype_subtypes.scala │ │ │ ├── sammy_inferargs.scala │ │ │ ├── sammy_overload.scala │ │ │ ├── sammy_override.scala │ │ │ ├── sammy_poly.scala │ │ │ ├── sammy_scope.scala │ │ │ ├── sammy_single.scala │ │ │ ├── sammy_twice.scala │ │ │ ├── scala-singleton.scala │ │ │ ├── scoping1.scala │ │ │ ├── scoping2.scala │ │ │ ├── scoping3.scala │ │ │ ├── sd219.scala │ │ │ ├── sd248 │ │ │ │ ├── Prop_1.scala │ │ │ │ ├── Test_2.scala │ │ │ │ └── package_1.scala │ │ │ ├── sd268.scala │ │ │ ├── self-type-override.scala │ │ │ ├── selftails.scala │ │ │ ├── seq-ordering.scala │ │ │ ├── seqtest2.scala │ │ │ ├── setter-not-implicit.flags │ │ │ ├── setter-not-implicit.scala │ │ │ ├── shapeless-regression.scala │ │ │ ├── signatures │ │ │ │ ├── Test.java │ │ │ │ └── sig.scala │ │ │ ├── simple-exceptions.scala │ │ │ ├── simplelists.scala │ │ │ ├── spec-Function1.scala │ │ │ ├── spec-annotations.scala │ │ │ ├── spec-arrays.scala │ │ │ ├── spec-asseenfrom.scala │ │ │ ├── spec-constr-new.scala │ │ │ ├── spec-constr-old.scala │ │ │ ├── spec-cyclic.scala │ │ │ ├── spec-doubledef-new.scala │ │ │ ├── spec-doubledef-old.scala │ │ │ ├── spec-example1.scala │ │ │ ├── spec-fields-new.scala │ │ │ ├── spec-fields-old.scala │ │ │ ├── spec-foo.scala │ │ │ ├── spec-funs.scala │ │ │ ├── spec-groups.scala │ │ │ ├── spec-lists.scala │ │ │ ├── spec-localdefs.scala │ │ │ ├── spec-maps.scala │ │ │ ├── spec-multiplectors.scala │ │ │ ├── spec-params-new.scala │ │ │ ├── spec-params-old.scala │ │ │ ├── spec-partially.scala │ │ │ ├── spec-partialmap.scala │ │ │ ├── spec-polymeth.scala │ │ │ ├── spec-private.scala │ │ │ ├── spec-sealed.scala │ │ │ ├── spec-short.scala │ │ │ ├── spec-simple.scala │ │ │ ├── spec-sparsearray-new.scala │ │ │ ├── spec-sparsearray-old.scala │ │ │ ├── spec-super.scala │ │ │ ├── spec-t3497.scala │ │ │ ├── spec-t6286.scala │ │ │ ├── spec-tailcall.scala │ │ │ ├── spec-thistype.scala │ │ │ ├── spec-traits.scala │ │ │ ├── spec-vector.scala │ │ │ ├── spec.scala │ │ │ ├── specialize10.scala │ │ │ ├── specializes-sym-crash.scala │ │ │ ├── spurious-overload.scala │ │ │ ├── stable.scala │ │ │ ├── strings.scala │ │ │ ├── strip-tvars-for-lubbasetypes.scala │ │ │ ├── sudoku.scala │ │ │ ├── super │ │ │ │ ├── Super_1.java │ │ │ │ └── Super_2.scala │ │ │ ├── switchUnbox.scala │ │ │ ├── t0002.scala │ │ │ ├── t0017.scala │ │ │ ├── t0020.scala │ │ │ ├── t0029.scala │ │ │ ├── t0030.scala │ │ │ ├── t0031.scala │ │ │ ├── t0032.scala │ │ │ ├── t0036.scala │ │ │ ├── t0039.scala │ │ │ ├── t0049.scala │ │ │ ├── t0053.scala │ │ │ ├── t0054.scala │ │ │ ├── t0055.scala │ │ │ ├── t0061.scala │ │ │ ├── t0064.scala │ │ │ ├── t0066.scala │ │ │ ├── t0068.scala │ │ │ ├── t0069.scala │ │ │ ├── t0076.scala │ │ │ ├── t0081.scala │ │ │ ├── t0082.scala │ │ │ ├── t0085.scala │ │ │ ├── t0091.scala │ │ │ ├── t0093.scala │ │ │ ├── t0095.scala │ │ │ ├── t0123.scala │ │ │ ├── t0154.scala │ │ │ ├── t0165.scala │ │ │ ├── t0204.scala │ │ │ ├── t0227.scala │ │ │ ├── t0231.scala │ │ │ ├── t0273.scala │ │ │ ├── t0288 │ │ │ │ ├── Foo.scala │ │ │ │ └── Outer.java │ │ │ ├── t0301.scala │ │ │ ├── t0304.scala │ │ │ ├── t0305.scala │ │ │ ├── t0438.scala │ │ │ ├── t0453.scala │ │ │ ├── t0504.scala │ │ │ ├── t0586.scala │ │ │ ├── t0591.scala │ │ │ ├── t0599.scala │ │ │ ├── t0612 │ │ │ │ ├── C.scala │ │ │ │ └── Ob.scala │ │ │ ├── t0625.scala │ │ │ ├── t0644.scala │ │ │ ├── t0654.scala │ │ │ ├── t0674.scala │ │ │ ├── t0695 │ │ │ │ ├── JavaClass.java │ │ │ │ └── Test.scala │ │ │ ├── t0710.scala │ │ │ ├── t0770.scala │ │ │ ├── t0774 │ │ │ │ ├── deathname.scala │ │ │ │ └── unrelated.scala │ │ │ ├── t0786.scala │ │ │ ├── t0851.scala │ │ │ ├── t0872.scala │ │ │ ├── t0904.scala │ │ │ ├── t0905.scala │ │ │ ├── t1000.scala │ │ │ ├── t10009.scala │ │ │ ├── t1001.scala │ │ │ ├── t1006.scala │ │ │ ├── t10066.scala │ │ │ ├── t10088.scala │ │ │ ├── t10093.flags │ │ │ ├── t10093.scala │ │ │ ├── t1014.scala │ │ │ ├── t10154.scala │ │ │ ├── t10154b.scala │ │ │ ├── t10159 │ │ │ │ ├── record_0.scala │ │ │ │ └── test_1.scala │ │ │ ├── t10185.flags │ │ │ ├── t10185.scala │ │ │ ├── t10195.flags │ │ │ ├── t10195.scala │ │ │ ├── t10195b.flags │ │ │ ├── t10195b.scala │ │ │ ├── t10197.flags │ │ │ ├── t10197.scala │ │ │ ├── t10205.scala │ │ │ ├── t10206.scala │ │ │ ├── t10213.flags │ │ │ ├── t10213.scala │ │ │ ├── t10238.flags │ │ │ ├── t10238.scala │ │ │ ├── t1027.scala │ │ │ ├── t10270.flags │ │ │ ├── t10270 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Main_2.scala │ │ │ ├── t10288.flags │ │ │ ├── t10288.scala │ │ │ ├── t1029 │ │ │ │ ├── Test_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t10296-before.flags │ │ │ ├── t10296-before │ │ │ │ ├── UnusedMacro_1.scala │ │ │ │ └── Unused_2.scala │ │ │ ├── t10296.flags │ │ │ ├── t10296 │ │ │ │ ├── UnusedMacro_1.scala │ │ │ │ └── Unused_2.scala │ │ │ ├── t1034.scala │ │ │ ├── t1035.scala │ │ │ ├── t10372.flags │ │ │ ├── t10372.scala │ │ │ ├── t1048.scala │ │ │ ├── t1049.scala │ │ │ ├── t1050.scala │ │ │ ├── t1053.scala │ │ │ ├── t1056.scala │ │ │ ├── t1070.scala │ │ │ ├── t1071.scala │ │ │ ├── t1075.scala │ │ │ ├── t1085.scala │ │ │ ├── t1090.scala │ │ │ ├── t1101 │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t1102 │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t1107a.scala │ │ │ ├── t1107b │ │ │ │ ├── O.scala │ │ │ │ └── T.scala │ │ │ ├── t1119.scala │ │ │ ├── t1123.scala │ │ │ ├── t112606A.scala │ │ │ ├── t1131.scala │ │ │ ├── t1133.scala │ │ │ ├── t1136.scala │ │ │ ├── t1146.scala │ │ │ ├── t1147.scala │ │ │ ├── t115.scala │ │ │ ├── t1150 │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t1152 │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t1159.scala │ │ │ ├── t116.scala │ │ │ ├── t1164.scala │ │ │ ├── t1168.scala │ │ │ ├── t1176 │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t1185.scala │ │ │ ├── t1186 │ │ │ │ └── t1186.java │ │ │ ├── t119.scala │ │ │ ├── t1196 │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t1197 │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t1203a.scala │ │ │ ├── t1203b │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t1208.scala │ │ │ ├── t121.scala │ │ │ ├── t1210a.scala │ │ │ ├── t122.scala │ │ │ ├── t1226.scala │ │ │ ├── t1230 │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t1231 │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t1232 │ │ │ │ ├── J.java │ │ │ │ ├── J2.java │ │ │ │ └── S.scala │ │ │ ├── t1235 │ │ │ │ └── Test.java │ │ │ ├── t1236.scala │ │ │ ├── t1237.scala │ │ │ ├── t124.scala │ │ │ ├── t1254 │ │ │ │ └── t1254.java │ │ │ ├── t1260.scala │ │ │ ├── t1263 │ │ │ │ ├── Test.java │ │ │ │ └── test.scala │ │ │ ├── t1272.scala │ │ │ ├── t1279a.scala │ │ │ ├── t1280.scala │ │ │ ├── t1292.scala │ │ │ ├── t1318.scala │ │ │ ├── t1357.scala │ │ │ ├── t1381-new.scala │ │ │ ├── t1381-old.scala │ │ │ ├── t1385.scala │ │ │ ├── t1391.scala │ │ │ ├── t1409 │ │ │ │ ├── AbstractImpl.java │ │ │ │ ├── ConcreteImpl.scala │ │ │ │ └── OuterInterface.java │ │ │ ├── t1422_pos.scala │ │ │ ├── t1438.scala │ │ │ ├── t1439.flags │ │ │ ├── t1439.scala │ │ │ ├── t1459 │ │ │ │ ├── AbstractBase.java │ │ │ │ ├── App.scala │ │ │ │ └── Caller.java │ │ │ ├── t1480.scala │ │ │ ├── t151.scala │ │ │ ├── t1560.scala │ │ │ ├── t1565.scala │ │ │ ├── t1569.scala │ │ │ ├── t159.scala │ │ │ ├── t1591_pos.scala │ │ │ ├── t1591b.scala │ │ │ ├── t160.scala │ │ │ ├── t1614 │ │ │ │ ├── bar.scala │ │ │ │ └── foo.scala │ │ │ ├── t1642 │ │ │ │ └── JavaCallingScalaHashMap.java │ │ │ ├── t1642b.scala │ │ │ ├── t1659.scala │ │ │ ├── t1672.scala │ │ │ ├── t1675.scala │ │ │ ├── t1693.scala │ │ │ ├── t1711 │ │ │ │ ├── Seq.scala │ │ │ │ └── Test.java │ │ │ ├── t1722-A.scala │ │ │ ├── t1722 │ │ │ │ ├── Test.scala │ │ │ │ └── Top.scala │ │ │ ├── t1745 │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t175.scala │ │ │ ├── t1751 │ │ │ │ ├── A1_2.scala │ │ │ │ ├── A2_1.scala │ │ │ │ └── SuiteClasses.java │ │ │ ├── t1756.scala │ │ │ ├── t177.scala │ │ │ ├── t1782 │ │ │ │ ├── Ann.java │ │ │ │ ├── Days.java │ │ │ │ ├── ImplementedBy.java │ │ │ │ └── Test_1.scala │ │ │ ├── t1785.scala │ │ │ ├── t1786-counter.scala │ │ │ ├── t1786-cycle.scala │ │ │ ├── t1789.scala │ │ │ ├── t1798.scala │ │ │ ├── t1803.flags │ │ │ ├── t1803.scala │ │ │ ├── t183.scala │ │ │ ├── t1832.scala │ │ │ ├── t1836 │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t1840 │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t1843.scala │ │ │ ├── t1858.scala │ │ │ ├── t1896 │ │ │ │ ├── D0.scala │ │ │ │ └── D1.scala │ │ │ ├── t1937 │ │ │ │ └── NumberGenerator.java │ │ │ ├── t1942 │ │ │ │ ├── A_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t1957.scala │ │ │ ├── t1974.scala │ │ │ ├── t1987a.scala │ │ │ ├── t1987b │ │ │ │ ├── a.scala │ │ │ │ └── b.scala │ │ │ ├── t1996.scala │ │ │ ├── t201.scala │ │ │ ├── t2018.scala │ │ │ ├── t2023.scala │ │ │ ├── t2038.scala │ │ │ ├── t2060.scala │ │ │ ├── t2066-2.10-compat.flags │ │ │ ├── t2066-2.10-compat.scala │ │ │ ├── t2066.scala │ │ │ ├── t2081.scala │ │ │ ├── t2082.scala │ │ │ ├── t2094.scala │ │ │ ├── t210.scala │ │ │ ├── t211.scala │ │ │ ├── t2119.scala │ │ │ ├── t2127.scala │ │ │ ├── t2130-1.scala │ │ │ ├── t2130-2.scala │ │ │ ├── t2133.scala │ │ │ ├── t2168.scala │ │ │ ├── t2179.scala │ │ │ ├── t2183.scala │ │ │ ├── t2187-2.scala │ │ │ ├── t2187.scala │ │ │ ├── t2194.scala │ │ │ ├── t2208_pos.scala │ │ │ ├── t2234.scala │ │ │ ├── t2260.scala │ │ │ ├── t2261.scala │ │ │ ├── t229.scala │ │ │ ├── t2293.scala │ │ │ ├── t2305.scala │ │ │ ├── t2310.scala │ │ │ ├── t2331.scala │ │ │ ├── t2377 │ │ │ │ ├── Q.java │ │ │ │ └── a.scala │ │ │ ├── t2377b │ │ │ │ ├── Q.java │ │ │ │ └── a.scala │ │ │ ├── t2399.scala │ │ │ ├── t2405.scala │ │ │ ├── t2409 │ │ │ │ ├── J.java │ │ │ │ └── t2409.scala │ │ │ ├── t2413 │ │ │ │ ├── TestJava.java │ │ │ │ └── TestScalac.scala │ │ │ ├── t2421.scala │ │ │ ├── t2421_delitedsl.scala │ │ │ ├── t2421b_pos.scala │ │ │ ├── t2421c.scala │ │ │ ├── t2425.scala │ │ │ ├── t2429.scala │ │ │ ├── t2433 │ │ │ │ ├── A.java │ │ │ │ ├── B.java │ │ │ │ └── Test.scala │ │ │ ├── t2435.scala │ │ │ ├── t2441pos.scala │ │ │ ├── t2444.scala │ │ │ ├── t245.scala │ │ │ ├── t2454.scala │ │ │ ├── t2464 │ │ │ │ ├── JavaOne.java │ │ │ │ ├── ScalaOne_1.scala │ │ │ │ └── t2464_2.scala │ │ │ ├── t247.scala │ │ │ ├── t2484.scala │ │ │ ├── t2486.scala │ │ │ ├── t2500.scala │ │ │ ├── t2504.scala │ │ │ ├── t252.scala │ │ │ ├── t2545.scala │ │ │ ├── t2569 │ │ │ │ ├── Child.scala │ │ │ │ └── Parent.java │ │ │ ├── t2591.scala │ │ │ ├── t2610.scala │ │ │ ├── t2613.scala │ │ │ ├── t2619.scala │ │ │ ├── t262.scala │ │ │ ├── t2624.scala │ │ │ ├── t2635.scala │ │ │ ├── t2660.scala │ │ │ ├── t2664.scala │ │ │ ├── t2665.scala │ │ │ ├── t2667.scala │ │ │ ├── t2669.scala │ │ │ ├── t267.scala │ │ │ ├── t2683.scala │ │ │ ├── t2691.scala │ │ │ ├── t2693.scala │ │ │ ├── t2698.scala │ │ │ ├── t2708.scala │ │ │ ├── t2712-1.flags │ │ │ ├── t2712-1.scala │ │ │ ├── t2712-2.flags │ │ │ ├── t2712-2.scala │ │ │ ├── t2712-3.flags │ │ │ ├── t2712-3.scala │ │ │ ├── t2712-4.flags │ │ │ ├── t2712-4.scala │ │ │ ├── t2712-5.flags │ │ │ ├── t2712-5.scala │ │ │ ├── t2712-6.flags │ │ │ ├── t2712-6.scala │ │ │ ├── t2712-7.flags │ │ │ ├── t2712-7.scala │ │ │ ├── t2726 │ │ │ │ ├── SQLBuilder_1.scala │ │ │ │ └── t2726_2.scala │ │ │ ├── t2741 │ │ │ │ ├── 2741_1.scala │ │ │ │ └── 2741_2.scala │ │ │ ├── t2764 │ │ │ │ ├── Ann.java │ │ │ │ ├── Enum.java │ │ │ │ └── Use.scala │ │ │ ├── t2782.scala │ │ │ ├── t2794.scala │ │ │ ├── t2795-new.scala │ │ │ ├── t2795-old.scala │ │ │ ├── t2797.scala │ │ │ ├── t2799.flags │ │ │ ├── t2799.scala │ │ │ ├── t2809.scala │ │ │ ├── t2810.scala │ │ │ ├── t284-pos.scala │ │ │ ├── t287.scala │ │ │ ├── t289.scala │ │ │ ├── t2910.scala │ │ │ ├── t2913.scala │ │ │ ├── t2939.scala │ │ │ ├── t294 │ │ │ │ ├── Ann.java │ │ │ │ ├── Ann2.java │ │ │ │ ├── Test_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t2940 │ │ │ │ ├── Cycle.java │ │ │ │ └── Error.scala │ │ │ ├── t2945.scala │ │ │ ├── t295.scala │ │ │ ├── t2956 │ │ │ │ ├── BeanDefinitionVisitor.java │ │ │ │ └── t2956.scala │ │ │ ├── t296.scala │ │ │ ├── t2973.scala │ │ │ ├── t2994a.scala │ │ │ ├── t2994b.scala │ │ │ ├── t3020.scala │ │ │ ├── t3037.scala │ │ │ ├── t304.scala │ │ │ ├── t3048.scala │ │ │ ├── t3071.scala │ │ │ ├── t3076 │ │ │ │ ├── C2.scala │ │ │ │ └── T.scala │ │ │ ├── t3079.scala │ │ │ ├── t3106.scala │ │ │ ├── t3120 │ │ │ │ ├── J1.java │ │ │ │ ├── J2.java │ │ │ │ ├── Q.java │ │ │ │ └── Test.scala │ │ │ ├── t3136.scala │ │ │ ├── t3137.scala │ │ │ ├── t3152.scala │ │ │ ├── t3160.scala │ │ │ ├── t3174.scala │ │ │ ├── t3174b.scala │ │ │ ├── t3175-pos.scala │ │ │ ├── t3177.scala │ │ │ ├── t318.scala │ │ │ ├── t319.scala │ │ │ ├── t3234.flags │ │ │ ├── t3234.scala │ │ │ ├── t3240.scala │ │ │ ├── t3249 │ │ │ │ ├── Test.java │ │ │ │ └── a.scala │ │ │ ├── t3272.scala │ │ │ ├── t3274.scala │ │ │ ├── t3278.scala │ │ │ ├── t3312.scala │ │ │ ├── t3343.scala │ │ │ ├── t3349 │ │ │ │ ├── AbstractTupleSet.java │ │ │ │ ├── Table.java │ │ │ │ ├── Test.scala │ │ │ │ └── TupleSet.java │ │ │ ├── t3363-new.scala │ │ │ ├── t3363-old.scala │ │ │ ├── t3368.flags │ │ │ ├── t3368.scala │ │ │ ├── t3371.scala │ │ │ ├── t3373.scala │ │ │ ├── t3374.scala │ │ │ ├── t3384.scala │ │ │ ├── t3404 │ │ │ │ ├── Base.java │ │ │ │ └── Derived.scala │ │ │ ├── t3411.scala │ │ │ ├── t3419 │ │ │ │ ├── B_1.scala │ │ │ │ └── C_2.scala │ │ │ ├── t3420.flags │ │ │ ├── t3420.scala │ │ │ ├── t3429 │ │ │ │ ├── A.scala │ │ │ │ └── Test.java │ │ │ ├── t3439.scala │ │ │ ├── t344.scala │ │ │ ├── t3440.scala │ │ │ ├── t3452f.scala │ │ │ ├── t3477.scala │ │ │ ├── t3480.scala │ │ │ ├── t3486 │ │ │ │ ├── JTest.java │ │ │ │ └── test.scala │ │ │ ├── t348plus.scala │ │ │ ├── t3494.scala │ │ │ ├── t3495.flags │ │ │ ├── t3495.scala │ │ │ ├── t3498-new.scala │ │ │ ├── t3498-old.scala │ │ │ ├── t3521 │ │ │ │ ├── DoubleValue.java │ │ │ │ └── a.scala │ │ │ ├── t3528.scala │ │ │ ├── t3534.scala │ │ │ ├── t3560.scala │ │ │ ├── t3567 │ │ │ │ ├── Foo.scala │ │ │ │ └── Outer.java │ │ │ ├── t3568.scala │ │ │ ├── t3570.scala │ │ │ ├── t3577.scala │ │ │ ├── t3578.scala │ │ │ ├── t3582.scala │ │ │ ├── t3582b.scala │ │ │ ├── t359.scala │ │ │ ├── t360.scala │ │ │ ├── t361.scala │ │ │ ├── t3612.scala │ │ │ ├── t3622 │ │ │ │ ├── AsyncTask.java │ │ │ │ ├── MyAsyncTask.java │ │ │ │ └── Test.scala │ │ │ ├── t3631.scala │ │ │ ├── t3636.scala │ │ │ ├── t3642 │ │ │ │ ├── Tuppel_1.java │ │ │ │ └── t3642_2.scala │ │ │ ├── t3670.scala │ │ │ ├── t3671.scala │ │ │ ├── t3672.scala │ │ │ ├── t3676.scala │ │ │ ├── t3688.scala │ │ │ ├── t372.scala │ │ │ ├── t3731.scala │ │ │ ├── t374.scala │ │ │ ├── t3772.scala │ │ │ ├── t3774.scala │ │ │ ├── t3777.scala │ │ │ ├── t3792.scala │ │ │ ├── t3800.scala │ │ │ ├── t3808.scala │ │ │ ├── t3833.scala │ │ │ ├── t3836.scala │ │ │ ├── t3837.scala │ │ │ ├── t3856.scala │ │ │ ├── t3859.scala │ │ │ ├── t3861.scala │ │ │ ├── t3862.scala │ │ │ ├── t3864 │ │ │ │ ├── scalaz_2.scala │ │ │ │ └── tuples_1.scala │ │ │ ├── t3866.scala │ │ │ ├── t3869.scala │ │ │ ├── t3880.scala │ │ │ ├── t3883.scala │ │ │ ├── t389.scala │ │ │ ├── t3890.scala │ │ │ ├── t3898.scala │ │ │ ├── t3924.scala │ │ │ ├── t3927.scala │ │ │ ├── t3936 │ │ │ │ ├── BlockingQueue.java │ │ │ │ ├── Queue.java │ │ │ │ └── Test.scala │ │ │ ├── t3938 │ │ │ │ ├── Parent.java │ │ │ │ └── UseParent.scala │ │ │ ├── t3943 │ │ │ │ ├── Client_2.scala │ │ │ │ └── Outer_1.java │ │ │ ├── t3946 │ │ │ │ ├── A.java │ │ │ │ └── Test_1.scala │ │ │ ├── t3951 │ │ │ │ ├── Coll_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t3960.flags │ │ │ ├── t3960.scala │ │ │ ├── t397.scala │ │ │ ├── t3972.scala │ │ │ ├── t3986.scala │ │ │ ├── t3999 │ │ │ │ ├── a_1.scala │ │ │ │ └── b_2.scala │ │ │ ├── t3999b.scala │ │ │ ├── t4012-a.scala │ │ │ ├── t4012-b.scala │ │ │ ├── t4018.scala │ │ │ ├── t402.scala │ │ │ ├── t4020.flags │ │ │ ├── t4020.scala │ │ │ ├── t4036.scala │ │ │ ├── t404.scala │ │ │ ├── t4052.scala │ │ │ ├── t4063.scala │ │ │ ├── t4070.scala │ │ │ ├── t4070b.scala │ │ │ ├── t4112.scala │ │ │ ├── t4114.scala │ │ │ ├── t415.scala │ │ │ ├── t4173.scala │ │ │ ├── t4176.scala │ │ │ ├── t4176b.scala │ │ │ ├── t4188.scala │ │ │ ├── t419.scala │ │ │ ├── t4202.scala │ │ │ ├── t4205 │ │ │ │ ├── 1.scala │ │ │ │ └── 2.scala │ │ │ ├── t4220.scala │ │ │ ├── t4237.scala │ │ │ ├── t4243.scala │ │ │ ├── t4257.scala │ │ │ ├── t4266.scala │ │ │ ├── t4269.scala │ │ │ ├── t4273.scala │ │ │ ├── t4275.scala │ │ │ ├── t430-feb09.scala │ │ │ ├── t430.scala │ │ │ ├── t4305.scala │ │ │ ├── t432.scala │ │ │ ├── t4336.scala │ │ │ ├── t4345.scala │ │ │ ├── t4363.scala │ │ │ ├── t4365 │ │ │ │ ├── a_1.scala │ │ │ │ └── b_1.scala │ │ │ ├── t439.scala │ │ │ ├── t4402 │ │ │ │ ├── A.scala │ │ │ │ ├── Bar.java │ │ │ │ └── Foo.java │ │ │ ├── t443.scala │ │ │ ├── t4430.scala │ │ │ ├── t4432.scala │ │ │ ├── t4457_1.scala │ │ │ ├── t4494.flags │ │ │ ├── t4494.scala │ │ │ ├── t4501.scala │ │ │ ├── t4502.scala │ │ │ ├── t4524.scala │ │ │ ├── t4545.scala │ │ │ ├── t4547.scala │ │ │ ├── t4553.scala │ │ │ ├── t4593.scala │ │ │ ├── t460.scala │ │ │ ├── t4603 │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t464.scala │ │ │ ├── t4649.flags │ │ │ ├── t4649.scala │ │ │ ├── t4651.scala │ │ │ ├── t4692.scala │ │ │ ├── t4716.scala │ │ │ ├── t4717.scala │ │ │ ├── t4731.scala │ │ │ ├── t4737 │ │ │ │ ├── J_1.java │ │ │ │ └── S_2.scala │ │ │ ├── t4744.flags │ │ │ ├── t4744 │ │ │ │ ├── Bar.scala │ │ │ │ └── Foo.java │ │ │ ├── t4757 │ │ │ │ ├── A_2.scala │ │ │ │ ├── B_3.scala │ │ │ │ └── P_1.scala │ │ │ ├── t4758.scala │ │ │ ├── t4760.scala │ │ │ ├── t4786.scala │ │ │ ├── t4812.scala │ │ │ ├── t482.scala │ │ │ ├── t4831.scala │ │ │ ├── t4840.flags │ │ │ ├── t4840.scala │ │ │ ├── t4842.scala │ │ │ ├── t4853.scala │ │ │ ├── t4859.scala │ │ │ ├── t4869.scala │ │ │ ├── t4910.scala │ │ │ ├── t4911.flags │ │ │ ├── t4911.scala │ │ │ ├── t4914.scala │ │ │ ├── t4938.scala │ │ │ ├── t4957.scala │ │ │ ├── t4970.scala │ │ │ ├── t4970b.scala │ │ │ ├── t4975.scala │ │ │ ├── t5012.scala │ │ │ ├── t5013 │ │ │ │ ├── Bar_2.scala │ │ │ │ └── Foo_1.scala │ │ │ ├── t5020.scala │ │ │ ├── t5022.scala │ │ │ ├── t5029.flags │ │ │ ├── t5029.scala │ │ │ ├── t5031 │ │ │ │ ├── Id.scala │ │ │ │ └── package.scala │ │ │ ├── t5031_2.scala │ │ │ ├── t5031_3 │ │ │ │ ├── Foo_1.scala │ │ │ │ ├── Main_2.scala │ │ │ │ └── package.scala │ │ │ ├── t5033.scala │ │ │ ├── t5041.scala │ │ │ ├── t5071.scala │ │ │ ├── t5082.scala │ │ │ ├── t5084.scala │ │ │ ├── t5099.scala │ │ │ ├── t5119.scala │ │ │ ├── t5120.scala │ │ │ ├── t5127.scala │ │ │ ├── t5130.scala │ │ │ ├── t5137.scala │ │ │ ├── t514.scala │ │ │ ├── t5154.scala │ │ │ ├── t5156.scala │ │ │ ├── t516.scala │ │ │ ├── t5165 │ │ │ │ ├── TestAnnotation.java │ │ │ │ ├── TestObject.scala │ │ │ │ └── TestTrait.scala │ │ │ ├── t5165b.flags │ │ │ ├── t5165b │ │ │ │ ├── TestAnnotation_1.java │ │ │ │ ├── TestObject_3.scala │ │ │ │ └── TestTrait_2.scala │ │ │ ├── t5175.flags │ │ │ ├── t5175.scala │ │ │ ├── t5178.scala │ │ │ ├── t5183.scala │ │ │ ├── t5198.scala │ │ │ ├── t5210.scala │ │ │ ├── t5217.scala │ │ │ ├── t522.scala │ │ │ ├── t5223.scala │ │ │ ├── t5240.scala │ │ │ ├── t5245.scala │ │ │ ├── t5259.scala │ │ │ ├── t5294b.scala │ │ │ ├── t5294c.scala │ │ │ ├── t530.scala │ │ │ ├── t5305.scala │ │ │ ├── t531.scala │ │ │ ├── t5313.scala │ │ │ ├── t5317.scala │ │ │ ├── t532.scala │ │ │ ├── t5330.scala │ │ │ ├── t5330b.scala │ │ │ ├── t5330c.scala │ │ │ ├── t5359.scala │ │ │ ├── t5384.scala │ │ │ ├── t5390.scala │ │ │ ├── t5399.scala │ │ │ ├── t5399a.scala │ │ │ ├── t5406.scala │ │ │ ├── t5413.scala │ │ │ ├── t5444.scala │ │ │ ├── t5454.scala │ │ │ ├── t5504 │ │ │ │ ├── s_1.scala │ │ │ │ └── s_2.scala │ │ │ ├── t5508-min-okay.scala │ │ │ ├── t5508-min-okay2.scala │ │ │ ├── t5508-min.scala │ │ │ ├── t5508.scala │ │ │ ├── t5541.scala │ │ │ ├── t5542.flags │ │ │ ├── t5542.scala │ │ │ ├── t5545 │ │ │ │ ├── S_1.scala │ │ │ │ └── S_2.scala │ │ │ ├── t5546.scala │ │ │ ├── t5604b │ │ │ │ ├── T_1.scala │ │ │ │ ├── T_2.scala │ │ │ │ ├── Test_1.scala │ │ │ │ ├── Test_2.scala │ │ │ │ └── pack_1.scala │ │ │ ├── t5606.scala │ │ │ ├── t5626.scala │ │ │ ├── t5639.flags │ │ │ ├── t5639 │ │ │ │ ├── A_1.scala │ │ │ │ └── A_2.scala │ │ │ ├── t5644 │ │ │ │ ├── BoxesRunTime.java │ │ │ │ └── other.scala │ │ │ ├── t5654.scala │ │ │ ├── t566.scala │ │ │ ├── t5667.scala │ │ │ ├── t5683.flags │ │ │ ├── t5683.scala │ │ │ ├── t5692a.check │ │ │ ├── t5692a.flags │ │ │ ├── t5692a │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t5692b.check │ │ │ ├── t5692b.flags │ │ │ ├── t5692b │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t5692c.scala │ │ │ ├── t5702-pos-infix-star.scala │ │ │ ├── t5703 │ │ │ │ ├── Base.java │ │ │ │ └── Impl.scala │ │ │ ├── t5706.flags │ │ │ ├── t5706.scala │ │ │ ├── t5720-ownerous.scala │ │ │ ├── t5726.scala │ │ │ ├── t5727.scala │ │ │ ├── t573.scala │ │ │ ├── t5738.scala │ │ │ ├── t5742.scala │ │ │ ├── t5744 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t5756.scala │ │ │ ├── t5760-pkgobj-warn │ │ │ │ ├── stalepkg_1.scala │ │ │ │ └── stalepkg_2.scala │ │ │ ├── t5769.scala │ │ │ ├── t577.scala │ │ │ ├── t5777.scala │ │ │ ├── t5779-numeq-warn.scala │ │ │ ├── t578.scala │ │ │ ├── t5788.scala │ │ │ ├── t5796.scala │ │ │ ├── t5809.flags │ │ │ ├── t5809.scala │ │ │ ├── t5818.flags │ │ │ ├── t5818.scala │ │ │ ├── t5829.scala │ │ │ ├── t5845.scala │ │ │ ├── t5846.scala │ │ │ ├── t5853.scala │ │ │ ├── t5859.scala │ │ │ ├── t5862.scala │ │ │ ├── t5877.scala │ │ │ ├── t5877b.scala │ │ │ ├── t5886.scala │ │ │ ├── t5892.scala │ │ │ ├── t5897.flags │ │ │ ├── t5897.scala │ │ │ ├── t5899.flags │ │ │ ├── t5899.scala │ │ │ ├── t5900a.scala │ │ │ ├── t5910.java │ │ │ ├── t592.scala │ │ │ ├── t5930.flags │ │ │ ├── t5930.scala │ │ │ ├── t5932.flags │ │ │ ├── t5932.scala │ │ │ ├── t595.scala │ │ │ ├── t5953.scala │ │ │ ├── t5954a │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── t5954b │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── t5954c.flags │ │ │ ├── t5954c │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── t5954d.flags │ │ │ ├── t5954d │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── t5957 │ │ │ │ ├── T_1.scala │ │ │ │ └── Test.java │ │ │ ├── t5958.scala │ │ │ ├── t596.scala │ │ │ ├── t5967.scala │ │ │ ├── t5968.flags │ │ │ ├── t5968.scala │ │ │ ├── t599.scala │ │ │ ├── t6008.flags │ │ │ ├── t6008.scala │ │ │ ├── t6014.scala │ │ │ ├── t602.scala │ │ │ ├── t6022.flags │ │ │ ├── t6022.scala │ │ │ ├── t6022b.scala │ │ │ ├── t6028 │ │ │ │ ├── t6028_1.scala │ │ │ │ └── t6028_2.scala │ │ │ ├── t6029.scala │ │ │ ├── t6033.scala │ │ │ ├── t6034.scala │ │ │ ├── t604.scala │ │ │ ├── t6040.scala │ │ │ ├── t6047.flags │ │ │ ├── t6047.scala │ │ │ ├── t6051.scala │ │ │ ├── t607.scala │ │ │ ├── t6072.scala │ │ │ ├── t6084.scala │ │ │ ├── t6089b.scala │ │ │ ├── t6091.flags │ │ │ ├── t6091.scala │ │ │ ├── t611.scala │ │ │ ├── t6117.scala │ │ │ ├── t6123-explaintypes-implicits.flags │ │ │ ├── t6123-explaintypes-implicits.scala │ │ │ ├── t613.scala │ │ │ ├── t6145.scala │ │ │ ├── t6146.flags │ │ │ ├── t6146.scala │ │ │ ├── t615.scala │ │ │ ├── t616.scala │ │ │ ├── t6161b.scala │ │ │ ├── t6162-inheritance.flags │ │ │ ├── t6162-inheritance.scala │ │ │ ├── t6169 │ │ │ │ ├── Exist.java │ │ │ │ ├── ExistF.java │ │ │ │ ├── ExistIndir.java │ │ │ │ ├── OP.java │ │ │ │ ├── Skin.java │ │ │ │ ├── Skinnable.java │ │ │ │ ├── skinnable.scala │ │ │ │ └── t6169.scala │ │ │ ├── t6184.scala │ │ │ ├── t6201.scala │ │ │ ├── t6204-a.scala │ │ │ ├── t6204-b.scala │ │ │ ├── t6205.scala │ │ │ ├── t6208.scala │ │ │ ├── t6210.flags │ │ │ ├── t6210.scala │ │ │ ├── t6215.scala │ │ │ ├── t6221.scala │ │ │ ├── t6225.scala │ │ │ ├── t6231.scala │ │ │ ├── t6231b.scala │ │ │ ├── t6245 │ │ │ │ ├── Base.java │ │ │ │ ├── Foo.scala │ │ │ │ └── Vis.java │ │ │ ├── t6260.flags │ │ │ ├── t6260.scala │ │ │ ├── t6260a.scala │ │ │ ├── t6260b.scala │ │ │ ├── t6274.scala │ │ │ ├── t6275.flags │ │ │ ├── t6275.scala │ │ │ ├── t6278-synth-def.scala │ │ │ ├── t628.scala │ │ │ ├── t6301.scala │ │ │ ├── t6311.scala │ │ │ ├── t6335.scala │ │ │ ├── t6355pos.scala │ │ │ ├── t6358.scala │ │ │ ├── t6358_2.scala │ │ │ ├── t6367.scala │ │ │ ├── t6386.scala │ │ │ ├── t640.scala │ │ │ ├── t6447.scala │ │ │ ├── t6479.scala │ │ │ ├── t6482.scala │ │ │ ├── t6485a │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t6485b │ │ │ │ └── Test.scala │ │ │ ├── t6499.scala │ │ │ ├── t651.scala │ │ │ ├── t6514.scala │ │ │ ├── t6516.scala │ │ │ ├── t6537.flags │ │ │ ├── t6537.scala │ │ │ ├── t6551.scala │ │ │ ├── t6552.scala │ │ │ ├── t6556.scala │ │ │ ├── t6562.scala │ │ │ ├── t6574.scala │ │ │ ├── t6575a.scala │ │ │ ├── t6575b.scala │ │ │ ├── t6582_exhaust_big.scala │ │ │ ├── t6595.flags │ │ │ ├── t6595.scala │ │ │ ├── t6600.scala │ │ │ ├── t6601 │ │ │ │ ├── PrivateValueClass_1.scala │ │ │ │ └── UsePrivateValueClass_2.scala │ │ │ ├── t661.scala │ │ │ ├── t6624.scala │ │ │ ├── t6648.scala │ │ │ ├── t6651.scala │ │ │ ├── t6664.scala │ │ │ ├── t6664b.scala │ │ │ ├── t6666d.scala │ │ │ ├── t6675.flags │ │ │ ├── t6675.scala │ │ │ ├── t6712.scala │ │ │ ├── t6722.scala │ │ │ ├── t6734.scala │ │ │ ├── t6745.scala │ │ │ ├── t675.scala │ │ │ ├── t6771.flags │ │ │ ├── t6771.scala │ │ │ ├── t6778.scala │ │ │ ├── t6780.scala │ │ │ ├── t6797.scala │ │ │ ├── t6815.scala │ │ │ ├── t6815_import.scala │ │ │ ├── t684.scala │ │ │ ├── t6846.scala │ │ │ ├── t6891.flags │ │ │ ├── t6891.scala │ │ │ ├── t6895b-2.flags │ │ │ ├── t6895b-2.scala │ │ │ ├── t6895b.flags │ │ │ ├── t6895b.scala │ │ │ ├── t6896.flags │ │ │ ├── t6896.scala │ │ │ ├── t690.scala │ │ │ ├── t6921.scala │ │ │ ├── t6925.scala │ │ │ ├── t6925b.scala │ │ │ ├── t694.scala │ │ │ ├── t6942.flags │ │ │ ├── t6942 │ │ │ │ ├── Bar.java │ │ │ │ └── t6942.scala │ │ │ ├── t6948.scala │ │ │ ├── t6963c.flags │ │ │ ├── t6963c.scala │ │ │ ├── t6966.scala │ │ │ ├── t697.scala │ │ │ ├── t6976 │ │ │ │ ├── Exts_1.scala │ │ │ │ ├── ImplicitBug_1.scala │ │ │ │ └── ImplicitBug_2.scala │ │ │ ├── t6978.flags │ │ │ ├── t6978 │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t698.scala │ │ │ ├── t6994.flags │ │ │ ├── t6994.scala │ │ │ ├── t7011.flags │ │ │ ├── t7011.scala │ │ │ ├── t7022.scala │ │ │ ├── t703.scala │ │ │ ├── t7033.scala │ │ │ ├── t7035.scala │ │ │ ├── t704.scala │ │ │ ├── t7046-2 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7088.scala │ │ │ ├── t7091.scala │ │ │ ├── t7100.scala │ │ │ ├── t711.scala │ │ │ ├── t7126.scala │ │ │ ├── t7180.scala │ │ │ ├── t7183.flags │ │ │ ├── t7183.scala │ │ │ ├── t7190.scala │ │ │ ├── t720.scala │ │ │ ├── t7200b.scala │ │ │ ├── t7226.scala │ │ │ ├── t7228.scala │ │ │ ├── t7232.flags │ │ │ ├── t7232 │ │ │ │ ├── Foo.java │ │ │ │ ├── List.java │ │ │ │ └── Test.scala │ │ │ ├── t7232b.flags │ │ │ ├── t7232b │ │ │ │ ├── Foo.java │ │ │ │ ├── List.java │ │ │ │ └── Test.scala │ │ │ ├── t7232c.flags │ │ │ ├── t7232c │ │ │ │ ├── Foo.java │ │ │ │ └── Test.scala │ │ │ ├── t7232d.flags │ │ │ ├── t7232d │ │ │ │ ├── Entry.java │ │ │ │ ├── Foo.java │ │ │ │ └── Test.scala │ │ │ ├── t7233.scala │ │ │ ├── t7233b.scala │ │ │ ├── t7264 │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── t7285a.flags │ │ │ ├── t7285a.scala │ │ │ ├── t7296.scala │ │ │ ├── t7315.flags │ │ │ ├── t7315.scala │ │ │ ├── t7322.scala │ │ │ ├── t7329.scala │ │ │ ├── t7364 │ │ │ │ ├── BadList.java │ │ │ │ └── UseIt.scala │ │ │ ├── t7364b │ │ │ │ ├── BadList_1.java │ │ │ │ └── UseIt_2.scala │ │ │ ├── t7369.flags │ │ │ ├── t7369.scala │ │ │ ├── t7377 │ │ │ │ ├── Client_2.scala │ │ │ │ └── Macro_1.scala │ │ │ ├── t7377b.scala │ │ │ ├── t7426.scala │ │ │ ├── t7427.flags │ │ │ ├── t7427.scala │ │ │ ├── t7433.flags │ │ │ ├── t7433.scala │ │ │ ├── t7459a.scala │ │ │ ├── t7459b.scala │ │ │ ├── t7459c.scala │ │ │ ├── t7459d.scala │ │ │ ├── t7461 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7475a.scala │ │ │ ├── t7475b.scala │ │ │ ├── t7475d.scala │ │ │ ├── t7475e.scala │ │ │ ├── t7486-named.scala │ │ │ ├── t7486.scala │ │ │ ├── t7505.scala │ │ │ ├── t7516 │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── t7517.scala │ │ │ ├── t7520.scala │ │ │ ├── t7532 │ │ │ │ ├── A_1.java │ │ │ │ └── B_2.scala │ │ │ ├── t7532b │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── t7551.flags │ │ │ ├── t7551 │ │ │ │ ├── A.java │ │ │ │ ├── T.scala │ │ │ │ └── Test.scala │ │ │ ├── t756.scala │ │ │ ├── t757.scala │ │ │ ├── t757a.scala │ │ │ ├── t758.scala │ │ │ ├── t759.scala │ │ │ ├── t7591 │ │ │ │ └── Demo.scala │ │ │ ├── t7596 │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── t7596b │ │ │ │ ├── A.scala │ │ │ │ └── B.scala │ │ │ ├── t7596c │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── t762.scala │ │ │ ├── t7638.scala │ │ │ ├── t7649.flags │ │ │ ├── t7649.scala │ │ │ ├── t7668.scala │ │ │ ├── t767.scala │ │ │ ├── t7683-stop-after-parser │ │ │ │ ├── ThePlugin.scala │ │ │ │ ├── sample_2.flags │ │ │ │ ├── sample_2.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── t7688.scala │ │ │ ├── t7689.scala │ │ │ ├── t7690.scala │ │ │ ├── t7694.scala │ │ │ ├── t7704.scala │ │ │ ├── t7716.scala │ │ │ ├── t7750.flags │ │ │ ├── t7750.scala │ │ │ ├── t7753.scala │ │ │ ├── t7776.check │ │ │ ├── t7776.scala │ │ │ ├── t7782.scala │ │ │ ├── t7782b.scala │ │ │ ├── t7784.scala │ │ │ ├── t7785.scala │ │ │ ├── t7788.scala │ │ │ ├── t780.scala │ │ │ ├── t7815.scala │ │ │ ├── t7818.scala │ │ │ ├── t7834.scala │ │ │ ├── t7847 │ │ │ │ ├── A.scala │ │ │ │ └── B.java │ │ │ ├── t7853-partial-function.scala │ │ │ ├── t7853.scala │ │ │ ├── t7864.flags │ │ │ ├── t7864.scala │ │ │ ├── t788.scala │ │ │ ├── t789.scala │ │ │ ├── t7902.scala │ │ │ ├── t7919.scala │ │ │ ├── t7928.scala │ │ │ ├── t7944.scala │ │ │ ├── t796.scala │ │ │ ├── t7983.scala │ │ │ ├── t7987 │ │ │ │ ├── Macro_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8001.check │ │ │ ├── t8001.flags │ │ │ ├── t8001 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8011.scala │ │ │ ├── t8013.flags │ │ │ ├── t8013 │ │ │ │ ├── inpervolated_2.scala │ │ │ │ └── inpervolator_1.scala │ │ │ ├── t802.scala │ │ │ ├── t8023.scala │ │ │ ├── t8023b.scala │ │ │ ├── t803.scala │ │ │ ├── t8040.flags │ │ │ ├── t8040.scala │ │ │ ├── t8044.scala │ │ │ ├── t8045.scala │ │ │ ├── t8046.scala │ │ │ ├── t8046b.scala │ │ │ ├── t8046c.scala │ │ │ ├── t805.scala │ │ │ ├── t8054.scala │ │ │ ├── t8060.scala │ │ │ ├── t8064.flags │ │ │ ├── t8064 │ │ │ │ ├── Client_2.scala │ │ │ │ └── Macro_1.scala │ │ │ ├── t8064b.flags │ │ │ ├── t8064b │ │ │ │ ├── Client_2.scala │ │ │ │ └── Macro_1.scala │ │ │ ├── t807.scala │ │ │ ├── t8079b.scala │ │ │ ├── t8111.scala │ │ │ ├── t812.scala │ │ │ ├── t8120.scala │ │ │ ├── t8128.scala │ │ │ ├── t8132.scala │ │ │ ├── t8134 │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── t8138.scala │ │ │ ├── t8146a.scala │ │ │ ├── t8146b.scala │ │ │ ├── t8157-2.10.flags │ │ │ ├── t8157-2.10.scala │ │ │ ├── t8170.scala │ │ │ ├── t8170b.scala │ │ │ ├── t8177.scala │ │ │ ├── t8177a.scala │ │ │ ├── t8177b.scala │ │ │ ├── t8177d.scala │ │ │ ├── t8177e.scala │ │ │ ├── t8177g.scala │ │ │ ├── t8177h.scala │ │ │ ├── t8187.check │ │ │ ├── t8187.scala │ │ │ ├── t8207.scala │ │ │ ├── t8209a.check │ │ │ ├── t8209a │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8209b.check │ │ │ ├── t8209b │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8219.scala │ │ │ ├── t8219b.scala │ │ │ ├── t8223.scala │ │ │ ├── t8224.scala │ │ │ ├── t8237.scala │ │ │ ├── t8237b.scala │ │ │ ├── t8244d │ │ │ │ ├── InodeBase_1.java │ │ │ │ └── Test_2.scala │ │ │ ├── t8267.scala │ │ │ ├── t8300-conversions-a.scala │ │ │ ├── t8300-conversions-b.scala │ │ │ ├── t8300-overloading.scala │ │ │ ├── t8300-patmat-a.scala │ │ │ ├── t8300-patmat-b.scala │ │ │ ├── t8301.scala │ │ │ ├── t8301b.scala │ │ │ ├── t8310.scala │ │ │ ├── t8324.scala │ │ │ ├── t8325.scala │ │ │ ├── t8329.scala │ │ │ ├── t8352.check │ │ │ ├── t8352 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8363.flags │ │ │ ├── t8363.scala │ │ │ ├── t8364.check │ │ │ ├── t8364.scala │ │ │ ├── t8367.scala │ │ │ ├── t8369a.check │ │ │ ├── t8369a.scala │ │ │ ├── t8369b.check │ │ │ ├── t8369b.scala │ │ │ ├── t8376 │ │ │ │ ├── BindingsX.java │ │ │ │ └── Test.scala │ │ │ ├── t839.scala │ │ │ ├── t8403.scala │ │ │ ├── t8410.flags │ │ │ ├── t8410.scala │ │ │ ├── t8411 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8429.scala │ │ │ ├── t8449 │ │ │ │ ├── Client.scala │ │ │ │ └── Test.java │ │ │ ├── t845.scala │ │ │ ├── t8460.scala │ │ │ ├── t8462.scala │ │ │ ├── t8497 │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── t8498.scala │ │ │ ├── t851.scala │ │ │ ├── t8523.flags │ │ │ ├── t8523.scala │ │ │ ├── t8531 │ │ │ │ ├── MyEnum.java │ │ │ │ └── Test.scala │ │ │ ├── t8546.flags │ │ │ ├── t8546.scala │ │ │ ├── t8578.flags │ │ │ ├── t8578.scala │ │ │ ├── t8596.flags │ │ │ ├── t8596.scala │ │ │ ├── t8617.flags │ │ │ ├── t8617.scala │ │ │ ├── t8625.scala │ │ │ ├── t8708 │ │ │ │ ├── Either_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8719.check │ │ │ ├── t8719 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t873.scala │ │ │ ├── t8736-b.flags │ │ │ ├── t8736-b.scala │ │ │ ├── t8736.flags │ │ │ ├── t8736.scala │ │ │ ├── t8743.scala │ │ │ ├── t8781 │ │ │ │ ├── Macro_1.scala │ │ │ │ ├── Test_2.flags │ │ │ │ └── Test_2.scala │ │ │ ├── t8793.scala │ │ │ ├── t8801.scala │ │ │ ├── t8828.flags │ │ │ ├── t8828.scala │ │ │ ├── t8844.scala │ │ │ ├── t8861.flags │ │ │ ├── t8861.scala │ │ │ ├── t8862a.scala │ │ │ ├── t8862b.scala │ │ │ ├── t8868a │ │ │ │ ├── Sub_2.scala │ │ │ │ └── T_1.scala │ │ │ ├── t8868b │ │ │ │ ├── Sub_2.scala │ │ │ │ └── T_1.scala │ │ │ ├── t8868c │ │ │ │ ├── Sub_2.scala │ │ │ │ └── T_1.scala │ │ │ ├── t8873.scala │ │ │ ├── t8893.scala │ │ │ ├── t8894.scala │ │ │ ├── t8900.scala │ │ │ ├── t892.scala │ │ │ ├── t8934a │ │ │ │ ├── A_1.scala │ │ │ │ ├── Test_2.flags │ │ │ │ └── Test_2.scala │ │ │ ├── t8947 │ │ │ │ ├── Client_2.scala │ │ │ │ └── Macro_1.scala │ │ │ ├── t8954.flags │ │ │ ├── t8954 │ │ │ │ ├── t1.scala │ │ │ │ └── t2.scala │ │ │ ├── t8962.scala │ │ │ ├── t8965.flags │ │ │ ├── t8965.scala │ │ │ ├── t8999.flags │ │ │ ├── t8999.scala │ │ │ ├── t9008.scala │ │ │ ├── t9018.scala │ │ │ ├── t9020.flags │ │ │ ├── t9020.scala │ │ │ ├── t9050.scala │ │ │ ├── t9074.scala │ │ │ ├── t9074b.scala │ │ │ ├── t9086.scala │ │ │ ├── t911.scala │ │ │ ├── t9111-inliner-workaround.flags │ │ │ ├── t9111-inliner-workaround │ │ │ │ ├── A_1.java │ │ │ │ └── Test_1.scala │ │ │ ├── t9116.scala │ │ │ ├── t9122.scala │ │ │ ├── t9131.scala │ │ │ ├── t9135.scala │ │ │ ├── t9157.scala │ │ │ ├── t9178b.flags │ │ │ ├── t9178b.scala │ │ │ ├── t9181.flags │ │ │ ├── t9181.scala │ │ │ ├── t9239 │ │ │ │ ├── Declaration.scala │ │ │ │ └── Usage.java │ │ │ ├── t9245.scala │ │ │ ├── t927.scala │ │ │ ├── t9285.flags │ │ │ ├── t9285.scala │ │ │ ├── t9321.scala │ │ │ ├── t9326a.scala │ │ │ ├── t9331.scala │ │ │ ├── t9356 │ │ │ │ ├── Foo_2.scala │ │ │ │ ├── MyAnnotation.java │ │ │ │ └── Test_3.scala │ │ │ ├── t9369.flags │ │ │ ├── t9369.scala │ │ │ ├── t9370 │ │ │ │ ├── ThePlugin.scala │ │ │ │ ├── sample_2.flags │ │ │ │ ├── sample_2.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── t9392 │ │ │ │ ├── client_2.scala │ │ │ │ └── macro_1.scala │ │ │ ├── t9393 │ │ │ │ ├── NamedImpl_1.java │ │ │ │ ├── NamedImpl_2.java │ │ │ │ ├── Named_1.java │ │ │ │ ├── Named_2.java │ │ │ │ └── test_2.scala │ │ │ ├── t9397.scala │ │ │ ├── t9399.flags │ │ │ ├── t9399.scala │ │ │ ├── t9411a.flags │ │ │ ├── t9411a.scala │ │ │ ├── t9411b.flags │ │ │ ├── t9411b.scala │ │ │ ├── t942 │ │ │ │ ├── Amount_1.java │ │ │ │ └── Test_2.scala │ │ │ ├── t9442.scala │ │ │ ├── t9449.scala │ │ │ ├── t946.scala │ │ │ ├── t9475.scala │ │ │ ├── t9479.scala │ │ │ ├── t9479b.scala │ │ │ ├── t9498.scala │ │ │ ├── t9542.scala │ │ │ ├── t9630.flags │ │ │ ├── t9630 │ │ │ │ ├── t9630a.scala │ │ │ │ └── t9630b.scala │ │ │ ├── t9647.scala │ │ │ ├── t9658.scala │ │ │ ├── t9665.scala │ │ │ ├── t9855.scala │ │ │ ├── t9855b.scala │ │ │ ├── t9918 │ │ │ │ ├── package.scala │ │ │ │ └── t9918.scala │ │ │ ├── t9920.scala │ │ │ ├── t9943.scala │ │ │ ├── tcpoly_boundedmonad.scala │ │ │ ├── tcpoly_bounds1.scala │ │ │ ├── tcpoly_checkkinds_mix.scala │ │ │ ├── tcpoly_gm.scala │ │ │ ├── tcpoly_higherorder_bound_method.scala │ │ │ ├── tcpoly_infer_easy.scala │ │ │ ├── tcpoly_infer_explicit_tuple_wrapper.scala │ │ │ ├── tcpoly_infer_implicit_tuple_wrapper.scala │ │ │ ├── tcpoly_infer_ticket1864.scala │ │ │ ├── tcpoly_infer_ticket474.scala │ │ │ ├── tcpoly_infer_ticket716.scala │ │ │ ├── tcpoly_late_method_params.scala │ │ │ ├── tcpoly_method.scala │ │ │ ├── tcpoly_overloaded.scala │ │ │ ├── tcpoly_param_scoping.scala │ │ │ ├── tcpoly_poly.scala │ │ │ ├── tcpoly_return_overriding.scala │ │ │ ├── tcpoly_seq.scala │ │ │ ├── tcpoly_seq_typealias.scala │ │ │ ├── tcpoly_subst.scala │ │ │ ├── tcpoly_ticket2096.scala │ │ │ ├── tcpoly_typeapp.scala │ │ │ ├── tcpoly_typesub.scala │ │ │ ├── tcpoly_variance_pos.scala │ │ │ ├── tcpoly_wildcards.scala │ │ │ ├── ted.scala │ │ │ ├── test1.scala │ │ │ ├── test4.scala │ │ │ ├── test4a.scala │ │ │ ├── test4refine.scala │ │ │ ├── test5.scala │ │ │ ├── test5refine.scala │ │ │ ├── testCoercionThis.scala │ │ │ ├── testcast.scala │ │ │ ├── thistype.scala │ │ │ ├── thistypes.scala │ │ │ ├── ticket0137.scala │ │ │ ├── ticket2197.scala │ │ │ ├── ticket2201.scala │ │ │ ├── ticket2251.scala │ │ │ ├── tinondefcons.scala │ │ │ ├── trailing-commas.scala │ │ │ ├── trait-parents.scala │ │ │ ├── trait_fields_dependent_conflict.scala │ │ │ ├── trait_fields_dependent_rebind.scala │ │ │ ├── trait_fields_inherit_double_def.scala │ │ │ ├── trait_fields_lambdalift.scala │ │ │ ├── trait_fields_nested_private_object.scala │ │ │ ├── trait_fields_nested_public_object.scala │ │ │ ├── trait_fields_owners.scala │ │ │ ├── trait_fields_private_this.scala │ │ │ ├── trait_fields_static_fwd.scala │ │ │ ├── trait_fields_var_override_deferred.scala │ │ │ ├── trait_fields_volatile.scala │ │ │ ├── trait_lazy_accessboundary.scala │ │ │ ├── traits.scala │ │ │ ├── tryexpr.scala │ │ │ ├── typealias_dubious.scala │ │ │ ├── typealiases.scala │ │ │ ├── typerep-stephane.scala │ │ │ ├── typerep_pos.scala │ │ │ ├── typesafecons.scala │ │ │ ├── typetags.scala │ │ │ ├── typevar-in-prefix.scala │ │ │ ├── unapplyComplex.scala │ │ │ ├── unapplyContexts2.scala │ │ │ ├── unapplyGeneric.scala │ │ │ ├── unapplyNeedsMemberType.scala │ │ │ ├── unapplySeq.scala │ │ │ ├── unapplyVal.scala │ │ │ ├── unchecked-a.flags │ │ │ ├── unchecked-a.scala │ │ │ ├── unicode-decode.scala │ │ │ ├── userdefined_apply.scala │ │ │ ├── userdefined_apply_poly_overload.scala │ │ │ ├── val_infer.scala │ │ │ ├── valdefs.scala │ │ │ ├── value-class-override-no-spec.flags │ │ │ ├── value-class-override-no-spec.scala │ │ │ ├── value-class-override-spec.scala │ │ │ ├── variances-flip.scala │ │ │ ├── variances-local.scala │ │ │ ├── variances_pos.scala │ │ │ ├── viewtest1.scala │ │ │ ├── viewtest2.scala │ │ │ ├── virtpatmat_alts_subst.flags │ │ │ ├── virtpatmat_alts_subst.scala │ │ │ ├── virtpatmat_anonfun_for.scala │ │ │ ├── virtpatmat_binding_opt.flags │ │ │ ├── virtpatmat_binding_opt.scala │ │ │ ├── virtpatmat_castbinder.flags │ │ │ ├── virtpatmat_castbinder.scala │ │ │ ├── virtpatmat_exhaust.scala │ │ │ ├── virtpatmat_exhaust_big.scala │ │ │ ├── virtpatmat_exhaust_unchecked.flags │ │ │ ├── virtpatmat_exhaust_unchecked.scala │ │ │ ├── virtpatmat_exist1.flags │ │ │ ├── virtpatmat_exist1.scala │ │ │ ├── virtpatmat_exist2.flags │ │ │ ├── virtpatmat_exist2.scala │ │ │ ├── virtpatmat_exist3.flags │ │ │ ├── virtpatmat_exist3.scala │ │ │ ├── virtpatmat_exist4.scala │ │ │ ├── virtpatmat_exist_uncurry.scala │ │ │ ├── virtpatmat_gadt_array.flags │ │ │ ├── virtpatmat_gadt_array.scala │ │ │ ├── virtpatmat_infer_single_1.flags │ │ │ ├── virtpatmat_infer_single_1.scala │ │ │ ├── virtpatmat_instof_valuetype.flags │ │ │ ├── virtpatmat_instof_valuetype.scala │ │ │ ├── virtpatmat_obj_in_case.flags │ │ │ ├── virtpatmat_obj_in_case.scala │ │ │ ├── virtpatmat_partialfun_nsdnho.scala │ │ │ ├── virtpatmat_reach_const.scala │ │ │ ├── warn-unused-params-not-implicits.flags │ │ │ ├── warn-unused-params-not-implicits.scala │ │ │ ├── widen-existential.scala │ │ │ ├── xlint1.flags │ │ │ ├── xlint1.scala │ │ │ ├── z1720.scala │ │ │ ├── z1730.flags │ │ │ └── z1730.scala │ │ ├── positions │ │ │ ├── Anon.scala │ │ │ ├── Empty.scala │ │ │ ├── Enclosing1.scala │ │ │ ├── Enclosing2.scala │ │ │ ├── Enclosing3.scala │ │ │ ├── Enclosing4.scala │ │ │ ├── ExcludedPrefix1.scala │ │ │ ├── MultipleDefs1.scala │ │ │ ├── New1.scala │ │ │ ├── Overlap1.scala │ │ │ ├── Overlap2.scala │ │ │ ├── Overlap3.scala │ │ │ ├── Overlap4.scala │ │ │ ├── Overlap5.scala │ │ │ ├── Overlap6.scala │ │ │ ├── Overlap7.scala │ │ │ ├── Scaladoc1.scala │ │ │ ├── Scaladoc2.scala │ │ │ ├── Scaladoc3.scala │ │ │ ├── Scaladoc4.scala │ │ │ ├── Scaladoc5.scala │ │ │ ├── Scaladoc6.scala │ │ │ ├── Scaladoc7.scala │ │ │ ├── Scaladoc8.scala │ │ │ ├── SyntheticNonSynthetic1.scala │ │ │ ├── SyntheticNonSynthetic2.scala │ │ │ ├── Unpositioned1.scala │ │ │ ├── Unsupported1.scala │ │ │ └── Unsupported2.scala │ │ ├── presentation │ │ │ ├── callcc-interpreter.check │ │ │ ├── callcc-interpreter │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ └── CallccInterpreter.scala │ │ │ ├── completion-implicit-chained.check │ │ │ ├── completion-implicit-chained │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── Completions.scala │ │ │ ├── doc.check │ │ │ ├── doc │ │ │ │ ├── doc.scala │ │ │ │ └── src │ │ │ │ │ ├── Class.scala │ │ │ │ │ └── p │ │ │ │ │ ├── Base.scala │ │ │ │ │ └── Derived.scala │ │ │ ├── forgotten-ask.scala │ │ │ ├── hyperlinks-macro.check │ │ │ ├── hyperlinks-macro │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ └── MacroCall.scala │ │ │ ├── hyperlinks.check │ │ │ ├── hyperlinks │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ ├── NameDefaultTests.scala │ │ │ │ │ ├── PatMatTests.scala │ │ │ │ │ └── SuperTypes.scala │ │ │ ├── ide-bug-1000349.check │ │ │ ├── ide-bug-1000349 │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ └── CompletionOnEmptyArgMethod.scala │ │ │ ├── ide-bug-1000469.check │ │ │ ├── ide-bug-1000469 │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ ├── java │ │ │ │ │ └── JavaEventHandler.java │ │ │ │ │ └── scala │ │ │ │ │ └── EventHandler.scala │ │ │ ├── ide-bug-1000475.check │ │ │ ├── ide-bug-1000475 │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ └── Foo.scala │ │ │ ├── ide-bug-1000531.check │ │ │ ├── ide-bug-1000531 │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ ├── CrashOnLoad.scala │ │ │ │ │ └── TestIterable.java │ │ │ ├── ide-t1000567.check │ │ │ ├── ide-t1000567 │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ ├── a │ │ │ │ │ └── a.scala │ │ │ │ │ └── b │ │ │ │ │ └── b.scala │ │ │ ├── ide-t1000609.check │ │ │ ├── ide-t1000609 │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ └── NoHyperlinking.scala │ │ │ ├── ide-t1000976.check │ │ │ ├── ide-t1000976.flags │ │ │ ├── ide-t1000976 │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ ├── a │ │ │ │ │ └── A.scala │ │ │ │ │ ├── b │ │ │ │ │ └── B.scala │ │ │ │ │ ├── c │ │ │ │ │ └── C.scala │ │ │ │ │ └── d │ │ │ │ │ └── D.scala │ │ │ ├── ide-t1001388.check │ │ │ ├── ide-t1001388 │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── a │ │ │ │ │ └── A.scala │ │ │ ├── implicit-member.check │ │ │ ├── implicit-member │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ └── ImplicitMember.scala │ │ │ ├── infix-completion.check │ │ │ ├── infix-completion │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ └── Snippet.scala │ │ │ ├── infix-completion2.check │ │ │ ├── infix-completion2 │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ └── Snippet.scala │ │ │ ├── memory-leaks.check │ │ │ ├── memory-leaks │ │ │ │ └── MemoryLeaksTest.scala │ │ │ ├── parse-invariants.check │ │ │ ├── parse-invariants │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── a │ │ │ │ │ └── A.scala │ │ │ ├── partial-fun.check │ │ │ ├── partial-fun │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ └── PartialFun.scala │ │ │ ├── ping-pong.check │ │ │ ├── ping-pong │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ └── PingPong.scala │ │ │ ├── private-case-class-members.check │ │ │ ├── private-case-class-members │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── State.scala │ │ │ ├── quasiquotes.flags │ │ │ ├── random.check │ │ │ ├── random │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ └── Random.scala │ │ │ ├── recursive-ask.check │ │ │ ├── recursive-ask │ │ │ │ └── RecursiveAsk.scala │ │ │ ├── scope-completion-1.check │ │ │ ├── scope-completion-1 │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── Completions.scala │ │ │ ├── scope-completion-2.check │ │ │ ├── scope-completion-2 │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── Completions.scala │ │ │ ├── scope-completion-3.check │ │ │ ├── scope-completion-3 │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── Completions.scala │ │ │ ├── scope-completion-4.check │ │ │ ├── scope-completion-4 │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── Completions.scala │ │ │ ├── scope-completion-import.check │ │ │ ├── scope-completion-import │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── Completions.scala │ │ │ ├── t1207.check │ │ │ ├── t1207 │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── Completions.scala │ │ │ ├── t4287.check │ │ │ ├── t4287 │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── Foo.scala │ │ │ ├── t4287b.check │ │ │ ├── t4287b │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── Foo.scala │ │ │ ├── t5708.check │ │ │ ├── t5708 │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── Completions.scala │ │ │ ├── t7548.check │ │ │ ├── t7548 │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── Foo.scala │ │ │ ├── t7548b.check │ │ │ ├── t7548b │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── Foo.scala │ │ │ ├── t7678.check │ │ │ ├── t7678 │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ └── TypeTag.scala │ │ │ ├── t7915.check │ │ │ ├── t7915 │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── Foo.scala │ │ │ ├── t8085.check │ │ │ ├── t8085.flags │ │ │ ├── t8085 │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── nodescala │ │ │ │ │ ├── Foo.scala │ │ │ │ │ ├── NodeScalaSuite.scala │ │ │ │ │ └── package.scala │ │ │ ├── t8085b.check │ │ │ ├── t8085b.flags │ │ │ ├── t8085b │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── p1 │ │ │ │ │ └── nodescala │ │ │ │ │ ├── Foo.scala │ │ │ │ │ ├── NodeScalaSuite.scala │ │ │ │ │ └── package.scala │ │ │ ├── t8459.check │ │ │ ├── t8459 │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ │ └── IncompleteDynamicSelect.scala │ │ │ ├── t8934.check │ │ │ ├── t8934 │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ └── Source.scala │ │ │ ├── t8941.check │ │ │ ├── t8941 │ │ │ │ ├── Runner.scala │ │ │ │ └── src │ │ │ │ │ └── Source.scala │ │ │ ├── t8941b │ │ │ │ ├── IdempotencyTest.scala │ │ │ │ └── Test.scala │ │ │ ├── t9238.scala │ │ │ ├── visibility.check │ │ │ └── visibility │ │ │ │ ├── Test.scala │ │ │ │ └── src │ │ │ │ └── Completions.scala │ │ ├── res │ │ │ ├── t5167.check │ │ │ ├── t5167.res │ │ │ ├── t5167 │ │ │ │ ├── t5167_1.scala │ │ │ │ └── t5167_2.scala │ │ │ ├── t5489.check │ │ │ ├── t5489.res │ │ │ ├── t5489 │ │ │ │ └── t5489.scala │ │ │ ├── t597.check │ │ │ ├── t597.res │ │ │ ├── t597 │ │ │ │ ├── Main.scala │ │ │ │ └── Test.scala │ │ │ ├── t6613.check │ │ │ ├── t6613.res │ │ │ ├── t6613 │ │ │ │ ├── Broken.scala │ │ │ │ └── Enummy.java │ │ │ ├── t687.check │ │ │ ├── t687.res │ │ │ ├── t687 │ │ │ │ ├── QueryA.scala │ │ │ │ └── QueryB.scala │ │ │ ├── t722.check │ │ │ ├── t722.res │ │ │ ├── t722 │ │ │ │ ├── IfElse.scala │ │ │ │ ├── Parser.scala │ │ │ │ └── ScanBased.scala │ │ │ ├── t735.check │ │ │ ├── t735.res │ │ │ ├── t735 │ │ │ │ ├── ScalaExpressions.scala │ │ │ │ └── ScalaTyper.scala │ │ │ ├── t743.check │ │ │ ├── t743.res │ │ │ ├── t743 │ │ │ │ ├── BracesXXX.scala │ │ │ │ └── ParserXXX.scala │ │ │ ├── t785.check │ │ │ ├── t785.res │ │ │ ├── t785 │ │ │ │ ├── ScalaNewTyper.scala │ │ │ │ └── ScalaTrees.scala │ │ │ ├── t831.check │ │ │ ├── t831.res │ │ │ ├── t831 │ │ │ │ ├── NewScalaParserXXX.scala │ │ │ │ └── NewScalaTestXXX.scala │ │ │ ├── t8871.check │ │ │ ├── t8871.res │ │ │ ├── t8871 │ │ │ │ ├── tag.scala │ │ │ │ └── usetag.scala │ │ │ ├── t9089.check │ │ │ ├── t9089.res │ │ │ ├── t9089 │ │ │ │ └── A.scala │ │ │ ├── t9170.check │ │ │ ├── t9170.res │ │ │ └── t9170 │ │ │ │ └── A.scala │ │ ├── run │ │ │ ├── Course-2002-01.check │ │ │ ├── Course-2002-01.scala │ │ │ ├── Course-2002-02.check │ │ │ ├── Course-2002-02.scala │ │ │ ├── Course-2002-03.check │ │ │ ├── Course-2002-03.scala │ │ │ ├── Course-2002-04.check │ │ │ ├── Course-2002-04.scala │ │ │ ├── Course-2002-05.check │ │ │ ├── Course-2002-05.scala │ │ │ ├── Course-2002-06.check │ │ │ ├── Course-2002-06.scala │ │ │ ├── Course-2002-07.check │ │ │ ├── Course-2002-07.scala │ │ │ ├── Course-2002-08.check │ │ │ ├── Course-2002-08.scala │ │ │ ├── Course-2002-09.check │ │ │ ├── Course-2002-09.scala │ │ │ ├── Course-2002-10.check │ │ │ ├── Course-2002-10.scala │ │ │ ├── Course-2002-13.check │ │ │ ├── Course-2002-13.scala │ │ │ ├── InferOverloadedPartialFunction.scala │ │ │ ├── Meter.check │ │ │ ├── Meter.scala │ │ │ ├── MeterCaseClass.check │ │ │ ├── MeterCaseClass.scala │ │ │ ├── MutableListTest.scala │ │ │ ├── NestedClasses.check │ │ │ ├── NestedClasses.scala │ │ │ ├── OrderingTest.scala │ │ │ ├── Predef.readLine.check │ │ │ ├── Predef.readLine.scala │ │ │ ├── QueueTest.scala │ │ │ ├── ReplacementMatching.scala │ │ │ ├── ReverseSeqView.scala │ │ │ ├── SD-235.scala │ │ │ ├── SD-290.scala │ │ │ ├── StubErrorBInheritsFromA.check │ │ │ ├── StubErrorBInheritsFromA.scala │ │ │ ├── StubErrorComplexInnerClass.check │ │ │ ├── StubErrorComplexInnerClass.scala │ │ │ ├── StubErrorHK.scala │ │ │ ├── StubErrorReturnTypeFunction.check │ │ │ ├── StubErrorReturnTypeFunction.scala │ │ │ ├── StubErrorReturnTypeFunction2.check │ │ │ ├── StubErrorReturnTypeFunction2.scala │ │ │ ├── StubErrorReturnTypePolyFunction.check │ │ │ ├── StubErrorReturnTypePolyFunction.scala │ │ │ ├── StubErrorSubclasses.check │ │ │ ├── StubErrorSubclasses.scala │ │ │ ├── StubErrorTypeDef.check │ │ │ ├── StubErrorTypeDef.scala │ │ │ ├── StubErrorTypeclass.check │ │ │ ├── StubErrorTypeclass.scala │ │ │ ├── SymbolsTest.scala │ │ │ ├── UnrolledBuffer.scala │ │ │ ├── WeakHashSetTest.scala │ │ │ ├── absoverride.check │ │ │ ├── absoverride.scala │ │ │ ├── abstype_implicits.flags │ │ │ ├── abstype_implicits.scala │ │ │ ├── abstypetags_core.check │ │ │ ├── abstypetags_core.scala │ │ │ ├── abstypetags_serialize.check │ │ │ ├── abstypetags_serialize.scala │ │ │ ├── adding-growing-set.scala │ │ │ ├── all-overridden.check │ │ │ ├── all-overridden.scala │ │ │ ├── amp.check │ │ │ ├── amp.scala │ │ │ ├── analyzerPlugins.check │ │ │ ├── analyzerPlugins.scala │ │ │ ├── annotatedRetyping.check │ │ │ ├── annotatedRetyping.scala │ │ │ ├── anyval-box-types.check │ │ │ ├── anyval-box-types.flags │ │ │ ├── anyval-box-types.scala │ │ │ ├── applydynamic_sip.check │ │ │ ├── applydynamic_sip.flags │ │ │ ├── applydynamic_sip.scala │ │ │ ├── array-addition.check │ │ │ ├── array-addition.scala │ │ │ ├── array-charSeq.check │ │ │ ├── array-charSeq.scala │ │ │ ├── array-existential-bound.check │ │ │ ├── array-existential-bound.scala │ │ │ ├── arrayclone-new.scala │ │ │ ├── arrayclone-old.scala │ │ │ ├── arraycopy.scala │ │ │ ├── arrays.check │ │ │ ├── arrays.scala │ │ │ ├── arrayview.scala │ │ │ ├── arybufgrow.check │ │ │ ├── arybufgrow.scala │ │ │ ├── backreferences.check │ │ │ ├── backreferences.scala │ │ │ ├── bcodeInlinerMixed.flags │ │ │ ├── bcodeInlinerMixed │ │ │ │ ├── A_1.java │ │ │ │ ├── B_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── bigDecimalCache.scala │ │ │ ├── bigDecimalTest.check │ │ │ ├── bigDecimalTest.scala │ │ │ ├── bitsets.check │ │ │ ├── bitsets.scala │ │ │ ├── blame_eye_triple_eee-double.check │ │ │ ├── blame_eye_triple_eee-double.scala │ │ │ ├── blame_eye_triple_eee-float.check │ │ │ ├── blame_eye_triple_eee-float.scala │ │ │ ├── boolexprs.check │ │ │ ├── boolexprs.scala │ │ │ ├── boolord.check │ │ │ ├── boolord.scala │ │ │ ├── breakout.check │ │ │ ├── breakout.scala │ │ │ ├── bridges.javaopts │ │ │ ├── bridges.scala │ │ │ ├── buffer-slice.check │ │ │ ├── buffer-slice.scala │ │ │ ├── bugs.check │ │ │ ├── bugs.scala │ │ │ ├── byname.check │ │ │ ├── byname.scala │ │ │ ├── bytecodecs.scala │ │ │ ├── case-class-23.check │ │ │ ├── case-class-23.scala │ │ │ ├── caseClassEquality.scala │ │ │ ├── caseClassHash.check │ │ │ ├── caseClassHash.scala │ │ │ ├── caseclasses.check │ │ │ ├── caseclasses.scala │ │ │ ├── castsingleton.check │ │ │ ├── castsingleton.scala │ │ │ ├── checked.check │ │ │ ├── checked.flags │ │ │ ├── checked.scala │ │ │ ├── checkinit.check │ │ │ ├── checkinit.flags │ │ │ ├── checkinit.scala │ │ │ ├── class-symbol-contravariant.check │ │ │ ├── class-symbol-contravariant.scala │ │ │ ├── classfile-format-51.scala │ │ │ ├── classfile-format-52.check │ │ │ ├── classfile-format-52.scala │ │ │ ├── classmanifests_new_alias.check │ │ │ ├── classmanifests_new_alias.scala │ │ │ ├── classmanifests_new_core.check │ │ │ ├── classmanifests_new_core.scala │ │ │ ├── classof.check │ │ │ ├── classof.scala │ │ │ ├── classtags_contextbound.check │ │ │ ├── classtags_contextbound.scala │ │ │ ├── classtags_core.check │ │ │ ├── classtags_core.scala │ │ │ ├── classtags_multi.check │ │ │ ├── classtags_multi.scala │ │ │ ├── collection-stacks.check │ │ │ ├── collection-stacks.scala │ │ │ ├── collections-toSelf.scala │ │ │ ├── collections.check │ │ │ ├── collections.scala │ │ │ ├── colltest.check │ │ │ ├── colltest.scala │ │ │ ├── colltest1.check │ │ │ ├── colltest1.scala │ │ │ ├── comparable-comparator.scala │ │ │ ├── compiler-asSeenFrom.check │ │ │ ├── compiler-asSeenFrom.scala │ │ │ ├── complicatedmatch.check │ │ │ ├── complicatedmatch.scala │ │ │ ├── concat-two-strings.scala │ │ │ ├── concurrent-map-conversions.scala │ │ │ ├── constant-optimization.check │ │ │ ├── constant-optimization.scala │ │ │ ├── constant-type.check │ │ │ ├── constant-type.scala │ │ │ ├── constrained-types.check │ │ │ ├── constrained-types.scala │ │ │ ├── constructors.check │ │ │ ├── constructors.scala │ │ │ ├── contrib674.check │ │ │ ├── contrib674.scala │ │ │ ├── ctor-order.check │ │ │ ├── ctor-order.scala │ │ │ ├── dead-code-elimination.scala │ │ │ ├── deeps.check │ │ │ ├── deeps.scala │ │ │ ├── delambdafy-dependent-on-param-subst-2.scala │ │ │ ├── delambdafy-dependent-on-param-subst.flags │ │ │ ├── delambdafy-dependent-on-param-subst.scala │ │ │ ├── delambdafy-nested-by-name.check │ │ │ ├── delambdafy-nested-by-name.scala │ │ │ ├── delambdafy-two-lambdas.check │ │ │ ├── delambdafy-two-lambdas.scala │ │ │ ├── delambdafy_t6028.check │ │ │ ├── delambdafy_t6028.scala │ │ │ ├── delambdafy_t6555.check │ │ │ ├── delambdafy_t6555.scala │ │ │ ├── delambdafy_uncurry_byname_inline.check │ │ │ ├── delambdafy_uncurry_byname_inline.scala │ │ │ ├── delambdafy_uncurry_byname_method.check │ │ │ ├── delambdafy_uncurry_byname_method.scala │ │ │ ├── delambdafy_uncurry_inline.check │ │ │ ├── delambdafy_uncurry_inline.scala │ │ │ ├── delambdafy_uncurry_method.check │ │ │ ├── delambdafy_uncurry_method.scala │ │ │ ├── delay-bad.check │ │ │ ├── delay-bad.scala │ │ │ ├── delay-good.check │ │ │ ├── delay-good.scala │ │ │ ├── deprecate-early-type-defs.check │ │ │ ├── deprecate-early-type-defs.flags │ │ │ ├── deprecate-early-type-defs.scala │ │ │ ├── disable-assertions.flags │ │ │ ├── disable-assertions.scala │ │ │ ├── distinct.check │ │ │ ├── distinct.scala │ │ │ ├── duplicate-meth.check │ │ │ ├── duplicate-meth.scala │ │ │ ├── duration-coarsest.scala │ │ │ ├── dynamic-anyval.check │ │ │ ├── dynamic-anyval.scala │ │ │ ├── dynamic-applyDynamic.check │ │ │ ├── dynamic-applyDynamic.scala │ │ │ ├── dynamic-applyDynamicNamed.check │ │ │ ├── dynamic-applyDynamicNamed.scala │ │ │ ├── dynamic-selectDynamic.check │ │ │ ├── dynamic-selectDynamic.scala │ │ │ ├── dynamic-updateDynamic.check │ │ │ ├── dynamic-updateDynamic.scala │ │ │ ├── elidable-noflags.check │ │ │ ├── elidable-noflags.scala │ │ │ ├── elidable-opt.check │ │ │ ├── elidable-opt.flags │ │ │ ├── elidable-opt.scala │ │ │ ├── elidable.check │ │ │ ├── elidable.flags │ │ │ ├── elidable.scala │ │ │ ├── empty-array.check │ │ │ ├── empty-array.scala │ │ │ ├── emptypf.check │ │ │ ├── emptypf.scala │ │ │ ├── enrich-gentraversable.check │ │ │ ├── enrich-gentraversable.scala │ │ │ ├── enums.check │ │ │ ├── enums.scala │ │ │ ├── equality.scala │ │ │ ├── eta-expand-star.check │ │ │ ├── eta-expand-star.scala │ │ │ ├── exc.scala │ │ │ ├── exc1.scala │ │ │ ├── exc2.scala │ │ │ ├── exceptions-2.check │ │ │ ├── exceptions-2.scala │ │ │ ├── exceptions-nest.check │ │ │ ├── exceptions-nest.scala │ │ │ ├── exceptions.check │ │ │ ├── exceptions.scala │ │ │ ├── existential-rangepos.check │ │ │ ├── existential-rangepos.scala │ │ │ ├── existentials-in-compiler.check │ │ │ ├── existentials-in-compiler.scala │ │ │ ├── existentials.check │ │ │ ├── existentials.scala │ │ │ ├── existentials3-new.check │ │ │ ├── existentials3-new.scala │ │ │ ├── existentials3-old.check │ │ │ ├── existentials3-old.scala │ │ │ ├── exoticnames.scala │ │ │ ├── exprs_serialize.check │ │ │ ├── exprs_serialize.scala │ │ │ ├── fail-non-value-types.check │ │ │ ├── fail-non-value-types.scala │ │ │ ├── finally.check │ │ │ ├── finally.scala │ │ │ ├── finalvar.check │ │ │ ├── finalvar.flags │ │ │ ├── finalvar.scala │ │ │ ├── flat-flat-flat.scala │ │ │ ├── fors.check │ │ │ ├── fors.scala │ │ │ ├── forvaleq.check │ │ │ ├── forvaleq.scala │ │ │ ├── freetypes_false_alarm1.check │ │ │ ├── freetypes_false_alarm1.scala │ │ │ ├── freetypes_false_alarm2.check │ │ │ ├── freetypes_false_alarm2.scala │ │ │ ├── function-null-unbox.scala │ │ │ ├── future-flatmap-exec-count.check │ │ │ ├── future-flatmap-exec-count.scala │ │ │ ├── gadts.check │ │ │ ├── gadts.scala │ │ │ ├── genericValueClass.check │ │ │ ├── genericValueClass.scala │ │ │ ├── getClassTest-new.check │ │ │ ├── getClassTest-new.scala │ │ │ ├── getClassTest-old.check │ │ │ ├── getClassTest-old.scala │ │ │ ├── getClassTest-valueClass.check │ │ │ ├── getClassTest-valueClass.scala │ │ │ ├── global-showdef.check │ │ │ ├── global-showdef.scala │ │ │ ├── groupby.scala │ │ │ ├── hashCodeDistribution.scala │ │ │ ├── hashCodeStatics.scala │ │ │ ├── hashhash.scala │ │ │ ├── hashsetremove.check │ │ │ ├── hashsetremove.scala │ │ │ ├── hk-typevar-unification.check │ │ │ ├── hk-typevar-unification.flags │ │ │ ├── hk-typevar-unification.scala │ │ │ ├── icode-reader-dead-code.check │ │ │ ├── icode-reader-dead-code.scala │ │ │ ├── idempotency-case-classes.check │ │ │ ├── idempotency-case-classes.scala │ │ │ ├── idempotency-extractors.check │ │ │ ├── idempotency-extractors.scala │ │ │ ├── idempotency-labels.check │ │ │ ├── idempotency-labels.scala │ │ │ ├── idempotency-lazy-vals.check │ │ │ ├── idempotency-lazy-vals.scala │ │ │ ├── idempotency-this.check │ │ │ ├── idempotency-this.scala │ │ │ ├── imain.check │ │ │ ├── imain.scala │ │ │ ├── impconvtimes.check │ │ │ ├── impconvtimes.scala │ │ │ ├── implicit-caching.scala │ │ │ ├── implicitclasses.scala │ │ │ ├── implicits.check │ │ │ ├── implicits.scala │ │ │ ├── imports.check │ │ │ ├── imports.scala │ │ │ ├── indexedSeq-apply.check │ │ │ ├── indexedSeq-apply.scala │ │ │ ├── indexedSeq.scala │ │ │ ├── indy-via-macro-with-dynamic-args │ │ │ │ ├── Bootstrap.java │ │ │ │ ├── Test_2.scala │ │ │ │ └── macro_1.scala │ │ │ ├── indy-via-macro │ │ │ │ ├── Bootstrap.java │ │ │ │ ├── Test_2.scala │ │ │ │ └── macro_1.scala │ │ │ ├── indylambda-boxing │ │ │ │ ├── VC.scala │ │ │ │ └── test.scala │ │ │ ├── inferred-type-constructors-hou.check │ │ │ ├── inferred-type-constructors-hou.flags │ │ │ ├── inferred-type-constructors-hou.scala │ │ │ ├── inferred-type-constructors.check │ │ │ ├── inferred-type-constructors.scala │ │ │ ├── infiniteloop.check │ │ │ ├── infiniteloop.scala │ │ │ ├── infix.check │ │ │ ├── infix.scala │ │ │ ├── inlineAddDeserializeLambda.scala │ │ │ ├── inlineHandlers.scala │ │ │ ├── inliner-infer.check │ │ │ ├── inliner-infer.scala │ │ │ ├── inner-obj-auto.check │ │ │ ├── inner-obj-auto.scala │ │ │ ├── interop_classtags_are_classmanifests.check │ │ │ ├── interop_classtags_are_classmanifests.scala │ │ │ ├── interop_manifests_are_abstypetags.check │ │ │ ├── interop_manifests_are_abstypetags.scala │ │ │ ├── interop_manifests_are_classtags.check │ │ │ ├── interop_manifests_are_classtags.scala │ │ │ ├── interop_manifests_are_typetags.check │ │ │ ├── interop_manifests_are_typetags.scala │ │ │ ├── interop_typetags_are_manifests.check │ │ │ ├── interop_typetags_are_manifests.flags │ │ │ ├── interop_typetags_are_manifests.scala │ │ │ ├── interpolation.check │ │ │ ├── interpolation.scala │ │ │ ├── interpolationArgs.check │ │ │ ├── interpolationArgs.scala │ │ │ ├── interpolationMultiline1.check │ │ │ ├── interpolationMultiline1.scala │ │ │ ├── interpolationMultiline2.check │ │ │ ├── interpolationMultiline2.scala │ │ │ ├── intmap.scala │ │ │ ├── iq.check │ │ │ ├── iq.scala │ │ │ ├── is-valid-num.scala │ │ │ ├── issue192.check │ │ │ ├── issue192.scala │ │ │ ├── iterables.check │ │ │ ├── iterables.scala │ │ │ ├── iterator-from.scala │ │ │ ├── iterator3444.scala │ │ │ ├── java-erasure.check │ │ │ ├── java-erasure.scala │ │ │ ├── junitForwarders │ │ │ │ ├── C_1.scala │ │ │ │ └── Test.java │ │ │ ├── kmpSliceSearch.check │ │ │ ├── kmpSliceSearch.flags │ │ │ ├── kmpSliceSearch.scala │ │ │ ├── lambda-serialization-gc.scala │ │ │ ├── lambda-serialization-security.scala │ │ │ ├── lambda-serialization.scala │ │ │ ├── large_class.check │ │ │ ├── large_class.scala │ │ │ ├── large_code.check │ │ │ ├── large_code.scala │ │ │ ├── lazy-concurrent.check │ │ │ ├── lazy-concurrent.scala │ │ │ ├── lazy-exprs.check │ │ │ ├── lazy-exprs.scala │ │ │ ├── lazy-leaks.scala │ │ │ ├── lazy-locals-2.scala │ │ │ ├── lazy-locals.check │ │ │ ├── lazy-locals.scala │ │ │ ├── lazy-override-run.check │ │ │ ├── lazy-override-run.scala │ │ │ ├── lazy-traits.check │ │ │ ├── lazy-traits.scala │ │ │ ├── lazy_local_labels.check │ │ │ ├── lazy_local_labels.scala │ │ │ ├── lift-and-unlift.scala │ │ │ ├── lisp.check │ │ │ ├── lisp.scala │ │ │ ├── list_map.scala │ │ │ ├── lists-run.scala │ │ │ ├── literals.check │ │ │ ├── literals.flags │ │ │ ├── literals.scala │ │ │ ├── local_obj.scala │ │ │ ├── longmap.scala │ │ │ ├── lub-visibility.check │ │ │ ├── lub-visibility.scala │ │ │ ├── macro-abort-fresh.check │ │ │ ├── macro-abort-fresh.flags │ │ │ ├── macro-abort-fresh │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-auto-duplicate.check │ │ │ ├── macro-auto-duplicate │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-basic-ma-md-mi.check │ │ │ ├── macro-basic-ma-md-mi.flags │ │ │ ├── macro-basic-ma-md-mi │ │ │ │ ├── Impls_1.scala │ │ │ │ ├── Macros_2.scala │ │ │ │ └── Test_3.scala │ │ │ ├── macro-basic-ma-mdmi.check │ │ │ ├── macro-basic-ma-mdmi.flags │ │ │ ├── macro-basic-ma-mdmi │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-basic-mamd-mi.check │ │ │ ├── macro-basic-mamd-mi.flags │ │ │ ├── macro-basic-mamd-mi │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-blackbox-materialization.check │ │ │ ├── macro-blackbox-materialization │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-bodyexpandstoimpl.check │ │ │ ├── macro-bodyexpandstoimpl.flags │ │ │ ├── macro-bodyexpandstoimpl │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-bundle-context-alias.check │ │ │ ├── macro-bundle-context-alias │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-bundle-context-refinement.check │ │ │ ├── macro-bundle-context-refinement │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-bundle-repl.check │ │ │ ├── macro-bundle-repl.scala │ │ │ ├── macro-bundle-static.check │ │ │ ├── macro-bundle-static │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-bundle-toplevel.check │ │ │ ├── macro-bundle-toplevel.flags │ │ │ ├── macro-bundle-toplevel │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-bundle-whitebox-decl.check │ │ │ ├── macro-bundle-whitebox-decl │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-bundle-whitebox-use-raw.check │ │ │ ├── macro-bundle-whitebox-use-raw │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-bundle-whitebox-use-refined.check │ │ │ ├── macro-bundle-whitebox-use-refined │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-def-path-dependent.check │ │ │ ├── macro-def-path-dependent.flags │ │ │ ├── macro-def-path-dependent │ │ │ │ ├── Dummy.scala │ │ │ │ ├── Test_1.scala │ │ │ │ ├── Test_2.scala │ │ │ │ ├── Test_3.scala │ │ │ │ ├── Test_4.scala │ │ │ │ ├── Test_5.scala │ │ │ │ └── Test_6.scala │ │ │ ├── macro-default-params.check │ │ │ ├── macro-default-params │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-divergence-spurious.check │ │ │ ├── macro-divergence-spurious │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-duplicate.check │ │ │ ├── macro-duplicate.flags │ │ │ ├── macro-duplicate │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-enclosingowner-detectvar.check │ │ │ ├── macro-enclosingowner-detectvar │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-enclosingowner-sbt.check │ │ │ ├── macro-enclosingowner-sbt │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-enclosures.check │ │ │ ├── macro-enclosures.flags │ │ │ ├── macro-enclosures │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-expand-implicit-argument.check │ │ │ ├── macro-expand-implicit-argument.flags │ │ │ ├── macro-expand-implicit-argument │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-expand-implicit-macro-has-implicit.check │ │ │ ├── macro-expand-implicit-macro-has-implicit.flags │ │ │ ├── macro-expand-implicit-macro-has-implicit │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-implicit-macro-is-implicit.check │ │ │ ├── macro-expand-implicit-macro-is-implicit.flags │ │ │ ├── macro-expand-implicit-macro-is-implicit │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-implicit-macro-is-val.check │ │ │ ├── macro-expand-implicit-macro-is-val.flags │ │ │ ├── macro-expand-implicit-macro-is-val │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-implicit-macro-is-view.check │ │ │ ├── macro-expand-implicit-macro-is-view │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-multiple-arglists.check │ │ │ ├── macro-expand-multiple-arglists.flags │ │ │ ├── macro-expand-multiple-arglists │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-nullary-generic.check │ │ │ ├── macro-expand-nullary-generic.flags │ │ │ ├── macro-expand-nullary-generic │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-nullary-nongeneric.check │ │ │ ├── macro-expand-nullary-nongeneric.flags │ │ │ ├── macro-expand-nullary-nongeneric │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-overload.check │ │ │ ├── macro-expand-overload.flags │ │ │ ├── macro-expand-overload │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-override.check │ │ │ ├── macro-expand-override.flags │ │ │ ├── macro-expand-override │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-recursive.check │ │ │ ├── macro-expand-recursive.flags │ │ │ ├── macro-expand-recursive │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-tparams-bounds.check │ │ │ ├── macro-expand-tparams-bounds.flags │ │ │ ├── macro-expand-tparams-bounds │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-tparams-explicit.check │ │ │ ├── macro-expand-tparams-explicit.flags │ │ │ ├── macro-expand-tparams-explicit │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-tparams-implicit.check │ │ │ ├── macro-expand-tparams-implicit.flags │ │ │ ├── macro-expand-tparams-implicit │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-tparams-prefix.check │ │ │ ├── macro-expand-tparams-prefix.flags │ │ │ ├── macro-expand-tparams-prefix │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-unapply-a.check │ │ │ ├── macro-expand-unapply-a.flags │ │ │ ├── macro-expand-unapply-a │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-expand-varargs-explicit-over-nonvarargs-bad.check │ │ │ ├── macro-expand-varargs-explicit-over-nonvarargs-bad.flags │ │ │ ├── macro-expand-varargs-explicit-over-nonvarargs-bad │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-varargs-explicit-over-nonvarargs-good.check │ │ │ ├── macro-expand-varargs-explicit-over-nonvarargs-good.flags │ │ │ ├── macro-expand-varargs-explicit-over-nonvarargs-good │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-varargs-explicit-over-varargs.check │ │ │ ├── macro-expand-varargs-explicit-over-varargs.flags │ │ │ ├── macro-expand-varargs-explicit-over-varargs │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-varargs-implicit-over-nonvarargs.check │ │ │ ├── macro-expand-varargs-implicit-over-nonvarargs.flags │ │ │ ├── macro-expand-varargs-implicit-over-nonvarargs │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-expand-varargs-implicit-over-varargs.check │ │ │ ├── macro-expand-varargs-implicit-over-varargs.flags │ │ │ ├── macro-expand-varargs-implicit-over-varargs │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-impl-default-params.check │ │ │ ├── macro-impl-default-params.flags │ │ │ ├── macro-impl-default-params │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-impl-relaxed.check │ │ │ ├── macro-impl-relaxed │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-impl-rename-context.check │ │ │ ├── macro-impl-rename-context.flags │ │ │ ├── macro-impl-rename-context │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-impl-tparam-only-in-impl.check │ │ │ ├── macro-impl-tparam-only-in-impl.flags │ │ │ ├── macro-impl-tparam-only-in-impl │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-impl-tparam-typetag-is-optional.check │ │ │ ├── macro-impl-tparam-typetag-is-optional.flags │ │ │ ├── macro-impl-tparam-typetag-is-optional │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-implicit-decorator.check │ │ │ ├── macro-implicit-decorator.flags │ │ │ ├── macro-implicit-decorator │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-invalidret-doesnt-conform-to-def-rettype.check │ │ │ ├── macro-invalidret-doesnt-conform-to-def-rettype.flags │ │ │ ├── macro-invalidret-doesnt-conform-to-def-rettype │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-invalidret-nontypeable.check │ │ │ ├── macro-invalidret-nontypeable.flags │ │ │ ├── macro-invalidret-nontypeable │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-invalidusage-badret.check │ │ │ ├── macro-invalidusage-badret.flags │ │ │ ├── macro-invalidusage-badret │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-invalidusage-partialapplication-with-tparams.check │ │ │ ├── macro-invalidusage-partialapplication-with-tparams.flags │ │ │ ├── macro-invalidusage-partialapplication-with-tparams │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-invalidusage-partialapplication.check │ │ │ ├── macro-invalidusage-partialapplication.flags │ │ │ ├── macro-invalidusage-partialapplication │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-openmacros.check │ │ │ ├── macro-openmacros.flags │ │ │ ├── macro-openmacros │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-parse-position-malformed.check │ │ │ ├── macro-parse-position-malformed │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-parse-position.check │ │ │ ├── macro-parse-position.flags │ │ │ ├── macro-parse-position │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-quasiinvalidbody-c.check │ │ │ ├── macro-quasiinvalidbody-c.flags │ │ │ ├── macro-quasiinvalidbody-c │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-quasiquotes.check │ │ │ ├── macro-quasiquotes │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-range.check │ │ │ ├── macro-range.flags │ │ │ ├── macro-range │ │ │ │ ├── Common_1.scala │ │ │ │ ├── Expansion_Impossible_2.scala │ │ │ │ └── Expansion_Possible_3.scala │ │ │ ├── macro-rangepos-args.check │ │ │ ├── macro-rangepos-args.flags │ │ │ ├── macro-rangepos-args │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-rangepos-subpatterns.check │ │ │ ├── macro-rangepos-subpatterns.flags │ │ │ ├── macro-rangepos-subpatterns │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reflective-ma-normal-mdmi.check │ │ │ ├── macro-reflective-ma-normal-mdmi.flags │ │ │ ├── macro-reflective-ma-normal-mdmi │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reflective-mamd-normal-mi.check │ │ │ ├── macro-reflective-mamd-normal-mi │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-reify-abstypetag-notypeparams.check │ │ │ ├── macro-reify-abstypetag-notypeparams │ │ │ │ └── Test.scala │ │ │ ├── macro-reify-abstypetag-typeparams-notags.check │ │ │ ├── macro-reify-abstypetag-typeparams-notags │ │ │ │ └── Test.scala │ │ │ ├── macro-reify-abstypetag-typeparams-tags.check │ │ │ ├── macro-reify-abstypetag-typeparams-tags │ │ │ │ └── Test.scala │ │ │ ├── macro-reify-abstypetag-usetypetag.check │ │ │ ├── macro-reify-abstypetag-usetypetag │ │ │ │ └── Test.scala │ │ │ ├── macro-reify-basic.check │ │ │ ├── macro-reify-basic.flags │ │ │ ├── macro-reify-basic │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reify-chained1 │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reify-chained2 │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reify-freevars.check │ │ │ ├── macro-reify-freevars.flags │ │ │ ├── macro-reify-freevars │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reify-nested-a1 │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reify-nested-a2 │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reify-nested-b1 │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reify-nested-b2 │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reify-ref-to-packageless.check │ │ │ ├── macro-reify-ref-to-packageless.flags │ │ │ ├── macro-reify-ref-to-packageless │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reify-splice-outside-reify.check │ │ │ ├── macro-reify-splice-outside-reify.flags │ │ │ ├── macro-reify-splice-outside-reify │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reify-staticXXX.check │ │ │ ├── macro-reify-staticXXX.flags │ │ │ ├── macro-reify-staticXXX │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reify-tagful-a.check │ │ │ ├── macro-reify-tagful-a.flags │ │ │ ├── macro-reify-tagful-a │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reify-tagless-a.check │ │ │ ├── macro-reify-tagless-a.flags │ │ │ ├── macro-reify-tagless-a │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reify-type.check │ │ │ ├── macro-reify-type.flags │ │ │ ├── macro-reify-type │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-reify-typetag-notypeparams.check │ │ │ ├── macro-reify-typetag-notypeparams │ │ │ │ └── Test.scala │ │ │ ├── macro-reify-typetag-typeparams-tags.check │ │ │ ├── macro-reify-typetag-typeparams-tags │ │ │ │ └── Test.scala │ │ │ ├── macro-reify-unreify.check │ │ │ ├── macro-reify-unreify.flags │ │ │ ├── macro-reify-unreify │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-repl-basic.check │ │ │ ├── macro-repl-basic.scala │ │ │ ├── macro-repl-dontexpand.check │ │ │ ├── macro-repl-dontexpand.scala │ │ │ ├── macro-settings.check │ │ │ ├── macro-settings.flags │ │ │ ├── macro-settings │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-sip19-revised.check │ │ │ ├── macro-sip19-revised.flags │ │ │ ├── macro-sip19-revised │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-sip19.check │ │ │ ├── macro-sip19.flags │ │ │ ├── macro-sip19 │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-subpatterns.check │ │ │ ├── macro-subpatterns │ │ │ │ ├── Macro_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-system-properties.check │ │ │ ├── macro-system-properties.scala │ │ │ ├── macro-term-declared-in-annotation.check │ │ │ ├── macro-term-declared-in-annotation.flags │ │ │ ├── macro-term-declared-in-annotation │ │ │ │ ├── Impls_1.scala │ │ │ │ ├── Macros_2.scala │ │ │ │ └── Test_3.scala │ │ │ ├── macro-term-declared-in-anonymous.check │ │ │ ├── macro-term-declared-in-anonymous.flags │ │ │ ├── macro-term-declared-in-anonymous │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-term-declared-in-block.check │ │ │ ├── macro-term-declared-in-block.flags │ │ │ ├── macro-term-declared-in-block │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-term-declared-in-class-class.check │ │ │ ├── macro-term-declared-in-class-class.flags │ │ │ ├── macro-term-declared-in-class-class │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-term-declared-in-class-object.check │ │ │ ├── macro-term-declared-in-class-object.flags │ │ │ ├── macro-term-declared-in-class-object │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-term-declared-in-class.check │ │ │ ├── macro-term-declared-in-class.flags │ │ │ ├── macro-term-declared-in-class │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-term-declared-in-default-param.check │ │ │ ├── macro-term-declared-in-default-param.flags │ │ │ ├── macro-term-declared-in-default-param │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-term-declared-in-implicit-class.check │ │ │ ├── macro-term-declared-in-implicit-class.flags │ │ │ ├── macro-term-declared-in-implicit-class │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-term-declared-in-method.check │ │ │ ├── macro-term-declared-in-method.flags │ │ │ ├── macro-term-declared-in-method │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-term-declared-in-object-class.check │ │ │ ├── macro-term-declared-in-object-class.flags │ │ │ ├── macro-term-declared-in-object-class │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-term-declared-in-object-object.check │ │ │ ├── macro-term-declared-in-object-object.flags │ │ │ ├── macro-term-declared-in-object-object │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-term-declared-in-object.check │ │ │ ├── macro-term-declared-in-object.flags │ │ │ ├── macro-term-declared-in-object │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-term-declared-in-package-object.check │ │ │ ├── macro-term-declared-in-package-object.flags │ │ │ ├── macro-term-declared-in-package-object │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-term-declared-in-refinement.check │ │ │ ├── macro-term-declared-in-refinement.flags │ │ │ ├── macro-term-declared-in-refinement │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-term-declared-in-trait.check │ │ │ ├── macro-term-declared-in-trait.flags │ │ │ ├── macro-term-declared-in-trait │ │ │ │ ├── Impls_1.scala │ │ │ │ └── Macros_Test_2.scala │ │ │ ├── macro-typecheck-implicitsdisabled.check │ │ │ ├── macro-typecheck-implicitsdisabled.flags │ │ │ ├── macro-typecheck-implicitsdisabled │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-typecheck-macrosdisabled.check │ │ │ ├── macro-typecheck-macrosdisabled.flags │ │ │ ├── macro-typecheck-macrosdisabled │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-typecheck-macrosdisabled2.check │ │ │ ├── macro-typecheck-macrosdisabled2.flags │ │ │ ├── macro-typecheck-macrosdisabled2 │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-undetparams-consfromsls.check │ │ │ ├── macro-undetparams-consfromsls.flags │ │ │ ├── macro-undetparams-consfromsls │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-undetparams-implicitval.check │ │ │ ├── macro-undetparams-implicitval.flags │ │ │ ├── macro-undetparams-implicitval │ │ │ │ └── Test.scala │ │ │ ├── macro-undetparams-macroitself.check │ │ │ ├── macro-undetparams-macroitself.flags │ │ │ ├── macro-undetparams-macroitself │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-vampire-false-warning.check │ │ │ ├── macro-vampire-false-warning.flags │ │ │ ├── macro-vampire-false-warning │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-whitebox-dynamic-materialization.check │ │ │ ├── macro-whitebox-dynamic-materialization │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-whitebox-extractor.check │ │ │ ├── macro-whitebox-extractor │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-whitebox-fundep-materialization.check │ │ │ ├── macro-whitebox-fundep-materialization │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macro-whitebox-structural.check │ │ │ ├── macro-whitebox-structural │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── macroPlugins-enterStats.check │ │ │ ├── macroPlugins-enterStats.scala │ │ │ ├── macroPlugins-isBlackbox │ │ │ │ ├── Macros_2.scala │ │ │ │ ├── Plugin_1.scala │ │ │ │ ├── Test_3.flags │ │ │ │ ├── Test_3.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── macroPlugins-macroArgs.check │ │ │ ├── macroPlugins-macroArgs │ │ │ │ ├── Macros_2.scala │ │ │ │ ├── Plugin_1.scala │ │ │ │ ├── Test_3.flags │ │ │ │ ├── Test_3.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── macroPlugins-macroExpand.check │ │ │ ├── macroPlugins-macroExpand.flags │ │ │ ├── macroPlugins-macroExpand │ │ │ │ ├── Macros_2.scala │ │ │ │ ├── Plugin_1.scala │ │ │ │ ├── Test_3.flags │ │ │ │ ├── Test_3.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── macroPlugins-macroRuntime.check │ │ │ ├── macroPlugins-macroRuntime │ │ │ │ ├── Macros_2.scala │ │ │ │ ├── Plugin_1.scala │ │ │ │ ├── Test_3.flags │ │ │ │ ├── Test_3.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── macroPlugins-namerHooks.check │ │ │ ├── macroPlugins-namerHooks.scala │ │ │ ├── macroPlugins-typedMacroBody.check │ │ │ ├── macroPlugins-typedMacroBody.flags │ │ │ ├── macroPlugins-typedMacroBody │ │ │ │ ├── Macros_2.flags │ │ │ │ ├── Macros_2.scala │ │ │ │ ├── Plugin_1.scala │ │ │ │ ├── Test_3.scala │ │ │ │ └── scalac-plugin.xml │ │ │ ├── manifests-new.scala │ │ │ ├── manifests-old.scala │ │ │ ├── manifests-undeprecated-in-2.10.0.flags │ │ │ ├── manifests-undeprecated-in-2.10.0.scala │ │ │ ├── mapConserve.scala │ │ │ ├── mapValues.scala │ │ │ ├── map_java_conversions.scala │ │ │ ├── map_test.check │ │ │ ├── map_test.scala │ │ │ ├── matcharraytail.check │ │ │ ├── matcharraytail.scala │ │ │ ├── matchbytes.check │ │ │ ├── matchbytes.scala │ │ │ ├── matchemptyarray.check │ │ │ ├── matchemptyarray.scala │ │ │ ├── matchintasany.check │ │ │ ├── matchintasany.scala │ │ │ ├── matchnull.check │ │ │ ├── matchnull.scala │ │ │ ├── matchonseq.check │ │ │ ├── matchonseq.scala │ │ │ ├── matchonstream.check │ │ │ ├── matchonstream.scala │ │ │ ├── memberpos.check │ │ │ ├── memberpos.scala │ │ │ ├── mirror_symbolof_x.check │ │ │ ├── mirror_symbolof_x.scala │ │ │ ├── misc.check │ │ │ ├── misc.scala │ │ │ ├── missingparams.check │ │ │ ├── missingparams.scala │ │ │ ├── mixin-bridge-methods.scala │ │ │ ├── mixin-signatures.check │ │ │ ├── mixin-signatures.scala │ │ │ ├── mixins.check │ │ │ ├── mixins.scala │ │ │ ├── multi-array.check │ │ │ ├── multi-array.scala │ │ │ ├── mutable-treeset.scala │ │ │ ├── name-based-patmat.check │ │ │ ├── name-based-patmat.scala │ │ │ ├── names-defaults.check │ │ │ ├── names-defaults.scala │ │ │ ├── newTags.check │ │ │ ├── newTags.scala │ │ │ ├── no-pickle-skolems.check │ │ │ ├── no-pickle-skolems │ │ │ │ ├── Source_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── noInlineUnknownIndy.check │ │ │ ├── noInlineUnknownIndy │ │ │ │ ├── A_1.java │ │ │ │ └── Test.scala │ │ │ ├── nonlocalreturn.check │ │ │ ├── nonlocalreturn.scala │ │ │ ├── nothingTypeDce.flags │ │ │ ├── nothingTypeDce.scala │ │ │ ├── nothingTypeNoOpt.flags │ │ │ ├── nothingTypeNoOpt.scala │ │ │ ├── null-and-intersect.check │ │ │ ├── null-and-intersect.scala │ │ │ ├── null-hash.scala │ │ │ ├── nullable-lazyvals.check │ │ │ ├── nullable-lazyvals.scala │ │ │ ├── number-parsing.scala │ │ │ ├── numbereq.scala │ │ │ ├── numeric-range.scala │ │ │ ├── optimizer-array-load.check │ │ │ ├── optimizer-array-load.scala │ │ │ ├── option-fold.check │ │ │ ├── option-fold.scala │ │ │ ├── outertest.scala │ │ │ ├── overloads.check │ │ │ ├── overloads.scala │ │ │ ├── partialfun.check │ │ │ ├── partialfun.scala │ │ │ ├── patch-boundary.scala │ │ │ ├── patmat-behavior-2.check │ │ │ ├── patmat-behavior-2.scala │ │ │ ├── patmat-behavior.check │ │ │ ├── patmat-behavior.scala │ │ │ ├── patmat-bind-typed.check │ │ │ ├── patmat-bind-typed.scala │ │ │ ├── patmat-exprs.check │ │ │ ├── patmat-exprs.scala │ │ │ ├── patmat-finally.scala │ │ │ ├── patmat-mix-case-extractor.check │ │ │ ├── patmat-mix-case-extractor.scala │ │ │ ├── patmat-seqs.check │ │ │ ├── patmat-seqs.scala │ │ │ ├── patmat_unapp_abstype-new.check │ │ │ ├── patmat_unapp_abstype-new.scala │ │ │ ├── patmatnew.check │ │ │ ├── patmatnew.scala │ │ │ ├── pf-catch.check │ │ │ ├── pf-catch.scala │ │ │ ├── phantomValueClass.check │ │ │ ├── phantomValueClass.scala │ │ │ ├── position-val-def.check │ │ │ ├── position-val-def.scala │ │ │ ├── predef-cycle.scala │ │ │ ├── preinits.check │ │ │ ├── preinits.scala │ │ │ ├── primitive-sigs-2-new.check │ │ │ ├── primitive-sigs-2-new.flags │ │ │ ├── primitive-sigs-2-new.scala │ │ │ ├── primitive-sigs-2-old.check │ │ │ ├── primitive-sigs-2-old.flags │ │ │ ├── primitive-sigs-2-old.scala │ │ │ ├── programmatic-main.check │ │ │ ├── programmatic-main.scala │ │ │ ├── promotion.check │ │ │ ├── promotion.scala │ │ │ ├── proxy.check │ │ │ ├── proxy.scala │ │ │ ├── pure-args-byname-noinline.check │ │ │ ├── pure-args-byname-noinline.scala │ │ │ ├── range-unit.check │ │ │ ├── range-unit.scala │ │ │ ├── range.scala │ │ │ ├── rawstrings.check │ │ │ ├── rawstrings.scala │ │ │ ├── records.scala │ │ │ ├── reflect-priv-ctor.check │ │ │ ├── reflect-priv-ctor.scala │ │ │ ├── reflection-allmirrors-tostring.check │ │ │ ├── reflection-allmirrors-tostring.scala │ │ │ ├── reflection-clinit-nested │ │ │ │ ├── A.java │ │ │ │ └── Test.scala │ │ │ ├── reflection-clinit │ │ │ │ ├── A.java │ │ │ │ └── Test.scala │ │ │ ├── reflection-companion.check │ │ │ ├── reflection-companion.scala │ │ │ ├── reflection-companiontype.check │ │ │ ├── reflection-companiontype.scala │ │ │ ├── reflection-constructormirror-inner-badpath.check │ │ │ ├── reflection-constructormirror-inner-badpath.scala │ │ │ ├── reflection-constructormirror-inner-good.check │ │ │ ├── reflection-constructormirror-inner-good.scala │ │ │ ├── reflection-constructormirror-nested-badpath.check │ │ │ ├── reflection-constructormirror-nested-badpath.scala │ │ │ ├── reflection-constructormirror-nested-good.check │ │ │ ├── reflection-constructormirror-nested-good.scala │ │ │ ├── reflection-constructormirror-toplevel-badpath.check │ │ │ ├── reflection-constructormirror-toplevel-badpath.scala │ │ │ ├── reflection-constructormirror-toplevel-good.check │ │ │ ├── reflection-constructormirror-toplevel-good.scala │ │ │ ├── reflection-enclosed-basic.check │ │ │ ├── reflection-enclosed-basic.scala │ │ │ ├── reflection-enclosed-inner-basic.check │ │ │ ├── reflection-enclosed-inner-basic.scala │ │ │ ├── reflection-enclosed-inner-inner-basic.check │ │ │ ├── reflection-enclosed-inner-inner-basic.scala │ │ │ ├── reflection-enclosed-inner-nested-basic.check │ │ │ ├── reflection-enclosed-inner-nested-basic.scala │ │ │ ├── reflection-enclosed-nested-basic.check │ │ │ ├── reflection-enclosed-nested-basic.scala │ │ │ ├── reflection-enclosed-nested-inner-basic.check │ │ │ ├── reflection-enclosed-nested-inner-basic.scala │ │ │ ├── reflection-enclosed-nested-nested-basic.check │ │ │ ├── reflection-enclosed-nested-nested-basic.scala │ │ │ ├── reflection-equality.check │ │ │ ├── reflection-equality.scala │ │ │ ├── reflection-fancy-java-classes.check │ │ │ ├── reflection-fancy-java-classes │ │ │ │ ├── Foo_1.java │ │ │ │ └── Test_2.scala │ │ │ ├── reflection-fieldmirror-accessorsareokay.check │ │ │ ├── reflection-fieldmirror-accessorsareokay.scala │ │ │ ├── reflection-fieldmirror-ctorparam.check │ │ │ ├── reflection-fieldmirror-ctorparam.scala │ │ │ ├── reflection-fieldmirror-getsetval.check │ │ │ ├── reflection-fieldmirror-getsetval.scala │ │ │ ├── reflection-fieldmirror-getsetvar.check │ │ │ ├── reflection-fieldmirror-getsetvar.scala │ │ │ ├── reflection-fieldmirror-nmelocalsuffixstring.check │ │ │ ├── reflection-fieldmirror-nmelocalsuffixstring.scala │ │ │ ├── reflection-fieldmirror-privatethis.check │ │ │ ├── reflection-fieldmirror-privatethis.scala │ │ │ ├── reflection-fieldsymbol-navigation.check │ │ │ ├── reflection-fieldsymbol-navigation.scala │ │ │ ├── reflection-idtc.check │ │ │ ├── reflection-idtc.scala │ │ │ ├── reflection-implicit.check │ │ │ ├── reflection-implicit.scala │ │ │ ├── reflection-java-annotations.check │ │ │ ├── reflection-java-annotations │ │ │ │ ├── JavaAnnottee_1.java │ │ │ │ ├── JavaComplexAnnotation_1.java │ │ │ │ ├── JavaSimpleAnnotation_1.java │ │ │ │ ├── JavaSimpleEnumeration_1.java │ │ │ │ └── Test_2.scala │ │ │ ├── reflection-java-crtp.check │ │ │ ├── reflection-java-crtp │ │ │ │ ├── JavaSimpleEnumeration_1.java │ │ │ │ └── Main_2.scala │ │ │ ├── reflection-magicsymbols-invoke.check │ │ │ ├── reflection-magicsymbols-invoke.scala │ │ │ ├── reflection-magicsymbols-repl.check │ │ │ ├── reflection-magicsymbols-repl.scala │ │ │ ├── reflection-magicsymbols-vanilla.check │ │ │ ├── reflection-magicsymbols-vanilla.scala │ │ │ ├── reflection-mem-glbs.scala │ │ │ ├── reflection-mem-tags.scala │ │ │ ├── reflection-methodsymbol-params.check │ │ │ ├── reflection-methodsymbol-params.scala │ │ │ ├── reflection-methodsymbol-returntype.check │ │ │ ├── reflection-methodsymbol-returntype.scala │ │ │ ├── reflection-methodsymbol-typeparams.check │ │ │ ├── reflection-methodsymbol-typeparams.scala │ │ │ ├── reflection-modulemirror-inner-badpath.check │ │ │ ├── reflection-modulemirror-inner-badpath.scala │ │ │ ├── reflection-modulemirror-inner-good.check │ │ │ ├── reflection-modulemirror-inner-good.scala │ │ │ ├── reflection-modulemirror-nested-badpath.check │ │ │ ├── reflection-modulemirror-nested-badpath.scala │ │ │ ├── reflection-modulemirror-nested-good.check │ │ │ ├── reflection-modulemirror-nested-good.scala │ │ │ ├── reflection-modulemirror-toplevel-badpath.check │ │ │ ├── reflection-modulemirror-toplevel-badpath.scala │ │ │ ├── reflection-modulemirror-toplevel-good.check │ │ │ ├── reflection-modulemirror-toplevel-good.scala │ │ │ ├── reflection-names.check │ │ │ ├── reflection-names.scala │ │ │ ├── reflection-repl-classes.check │ │ │ ├── reflection-repl-classes.scala │ │ │ ├── reflection-repl-elementary.check │ │ │ ├── reflection-repl-elementary.scala │ │ │ ├── reflection-sanitychecks.check │ │ │ ├── reflection-sanitychecks.scala │ │ │ ├── reflection-scala-annotations.check │ │ │ ├── reflection-scala-annotations.scala │ │ │ ├── reflection-sorted-decls.check │ │ │ ├── reflection-sorted-decls.scala │ │ │ ├── reflection-sorted-members.check │ │ │ ├── reflection-sorted-members.scala │ │ │ ├── reflection-sync-potpourri.scala │ │ │ ├── reflection-sync-subtypes.check │ │ │ ├── reflection-sync-subtypes.scala │ │ │ ├── reflection-tags.check │ │ │ ├── reflection-tags.scala │ │ │ ├── reflection-valueclasses-derived.check │ │ │ ├── reflection-valueclasses-derived.scala │ │ │ ├── reflection-valueclasses-magic.check │ │ │ ├── reflection-valueclasses-magic.scala │ │ │ ├── reflection-valueclasses-standard.check │ │ │ ├── reflection-valueclasses-standard.scala │ │ │ ├── reflinit.check │ │ │ ├── reflinit.scala │ │ │ ├── reify-aliases.check │ │ │ ├── reify-aliases.scala │ │ │ ├── reify-each-node-type.check │ │ │ ├── reify-each-node-type.scala │ │ │ ├── reify-repl-fail-gracefully.check │ │ │ ├── reify-repl-fail-gracefully.scala │ │ │ ├── reify-staticXXX.check │ │ │ ├── reify-staticXXX.scala │ │ │ ├── reify_ann1a.check │ │ │ ├── reify_ann1a.scala │ │ │ ├── reify_ann1b.check │ │ │ ├── reify_ann1b.scala │ │ │ ├── reify_ann2a.check │ │ │ ├── reify_ann2a.scala │ │ │ ├── reify_ann3.check │ │ │ ├── reify_ann3.scala │ │ │ ├── reify_ann4.check │ │ │ ├── reify_ann4.scala │ │ │ ├── reify_ann5.check │ │ │ ├── reify_ann5.scala │ │ │ ├── reify_anonymous.check │ │ │ ├── reify_anonymous.scala │ │ │ ├── reify_classfileann_a.check │ │ │ ├── reify_classfileann_a.scala │ │ │ ├── reify_classfileann_b.check │ │ │ ├── reify_classfileann_b.scala │ │ │ ├── reify_closure1.check │ │ │ ├── reify_closure1.scala │ │ │ ├── reify_closure2a.check │ │ │ ├── reify_closure2a.scala │ │ │ ├── reify_closure3a.check │ │ │ ├── reify_closure3a.scala │ │ │ ├── reify_closure4a.check │ │ │ ├── reify_closure4a.scala │ │ │ ├── reify_closure5a.check │ │ │ ├── reify_closure5a.scala │ │ │ ├── reify_closure6.check │ │ │ ├── reify_closure6.scala │ │ │ ├── reify_closure7.check │ │ │ ├── reify_closure7.scala │ │ │ ├── reify_closure8a.check │ │ │ ├── reify_closure8a.scala │ │ │ ├── reify_closure8b.check │ │ │ ├── reify_closure8b.scala │ │ │ ├── reify_closures10.check │ │ │ ├── reify_closures10.scala │ │ │ ├── reify_complex.check │ │ │ ├── reify_complex.scala │ │ │ ├── reify_copypaste1.check │ │ │ ├── reify_copypaste1.scala │ │ │ ├── reify_copypaste2.check │ │ │ ├── reify_copypaste2.scala │ │ │ ├── reify_csv.check │ │ │ ├── reify_csv.scala │ │ │ ├── reify_extendbuiltins.check │ │ │ ├── reify_extendbuiltins.scala │ │ │ ├── reify_for1.scala │ │ │ ├── reify_fors_newpatmat.check │ │ │ ├── reify_fors_newpatmat.scala │ │ │ ├── reify_fors_oldpatmat.check │ │ │ ├── reify_fors_oldpatmat.scala │ │ │ ├── reify_generic.check │ │ │ ├── reify_generic.scala │ │ │ ├── reify_generic2.check │ │ │ ├── reify_generic2.scala │ │ │ ├── reify_getter.check │ │ │ ├── reify_getter.scala │ │ │ ├── reify_implicits-new.check │ │ │ ├── reify_implicits-new.scala │ │ │ ├── reify_implicits-old.check │ │ │ ├── reify_implicits-old.scala │ │ │ ├── reify_inheritance.check │ │ │ ├── reify_inheritance.scala │ │ │ ├── reify_inner1.check │ │ │ ├── reify_inner1.scala │ │ │ ├── reify_inner2.check │ │ │ ├── reify_inner2.scala │ │ │ ├── reify_inner3.check │ │ │ ├── reify_inner3.scala │ │ │ ├── reify_inner4.check │ │ │ ├── reify_inner4.scala │ │ │ ├── reify_lazyevaluation.check │ │ │ ├── reify_lazyevaluation.scala │ │ │ ├── reify_lazyunit.check │ │ │ ├── reify_lazyunit.scala │ │ │ ├── reify_magicsymbols.check │ │ │ ├── reify_magicsymbols.scala │ │ │ ├── reify_maps_newpatmat.check │ │ │ ├── reify_maps_newpatmat.scala │ │ │ ├── reify_maps_oldpatmat.check │ │ │ ├── reify_maps_oldpatmat.scala │ │ │ ├── reify_metalevel_breach_+0_refers_to_1.check │ │ │ ├── reify_metalevel_breach_+0_refers_to_1.scala │ │ │ ├── reify_metalevel_breach_-1_refers_to_0_a.check │ │ │ ├── reify_metalevel_breach_-1_refers_to_0_a.scala │ │ │ ├── reify_metalevel_breach_-1_refers_to_0_b.check │ │ │ ├── reify_metalevel_breach_-1_refers_to_0_b.scala │ │ │ ├── reify_metalevel_breach_-1_refers_to_1.check │ │ │ ├── reify_metalevel_breach_-1_refers_to_1.scala │ │ │ ├── reify_nested_inner_refers_to_global.check │ │ │ ├── reify_nested_inner_refers_to_global.scala │ │ │ ├── reify_nested_inner_refers_to_local.check │ │ │ ├── reify_nested_inner_refers_to_local.scala │ │ │ ├── reify_nested_outer_refers_to_global.check │ │ │ ├── reify_nested_outer_refers_to_global.scala │ │ │ ├── reify_nested_outer_refers_to_local.check │ │ │ ├── reify_nested_outer_refers_to_local.scala │ │ │ ├── reify_newimpl_01.check │ │ │ ├── reify_newimpl_01.scala │ │ │ ├── reify_newimpl_02.check │ │ │ ├── reify_newimpl_02.scala │ │ │ ├── reify_newimpl_03.check │ │ │ ├── reify_newimpl_03.scala │ │ │ ├── reify_newimpl_04.check │ │ │ ├── reify_newimpl_04.scala │ │ │ ├── reify_newimpl_05.check │ │ │ ├── reify_newimpl_05.scala │ │ │ ├── reify_newimpl_06.check │ │ │ ├── reify_newimpl_06.scala │ │ │ ├── reify_newimpl_11.check │ │ │ ├── reify_newimpl_11.scala │ │ │ ├── reify_newimpl_12.check │ │ │ ├── reify_newimpl_12.scala │ │ │ ├── reify_newimpl_13.check │ │ │ ├── reify_newimpl_13.scala │ │ │ ├── reify_newimpl_14.check │ │ │ ├── reify_newimpl_14.scala │ │ │ ├── reify_newimpl_15.check │ │ │ ├── reify_newimpl_15.scala │ │ │ ├── reify_newimpl_18.check │ │ │ ├── reify_newimpl_18.scala │ │ │ ├── reify_newimpl_19.check │ │ │ ├── reify_newimpl_19.scala │ │ │ ├── reify_newimpl_20.check │ │ │ ├── reify_newimpl_20.scala │ │ │ ├── reify_newimpl_21.check │ │ │ ├── reify_newimpl_21.scala │ │ │ ├── reify_newimpl_22.check │ │ │ ├── reify_newimpl_22.scala │ │ │ ├── reify_newimpl_23.check │ │ │ ├── reify_newimpl_23.scala │ │ │ ├── reify_newimpl_25.check │ │ │ ├── reify_newimpl_25.scala │ │ │ ├── reify_newimpl_26.check │ │ │ ├── reify_newimpl_26.scala │ │ │ ├── reify_newimpl_27.check │ │ │ ├── reify_newimpl_27.scala │ │ │ ├── reify_newimpl_29.check │ │ │ ├── reify_newimpl_29.scala │ │ │ ├── reify_newimpl_30.check │ │ │ ├── reify_newimpl_30.scala │ │ │ ├── reify_newimpl_31.check │ │ │ ├── reify_newimpl_31.scala │ │ │ ├── reify_newimpl_33.check │ │ │ ├── reify_newimpl_33.scala │ │ │ ├── reify_newimpl_35.check │ │ │ ├── reify_newimpl_35.scala │ │ │ ├── reify_newimpl_36.check │ │ │ ├── reify_newimpl_36.scala │ │ │ ├── reify_newimpl_37.check │ │ │ ├── reify_newimpl_37.scala │ │ │ ├── reify_newimpl_38.check │ │ │ ├── reify_newimpl_38.scala │ │ │ ├── reify_newimpl_39.check │ │ │ ├── reify_newimpl_39.scala │ │ │ ├── reify_newimpl_40.check │ │ │ ├── reify_newimpl_40.scala │ │ │ ├── reify_newimpl_41.check │ │ │ ├── reify_newimpl_41.scala │ │ │ ├── reify_newimpl_42.check │ │ │ ├── reify_newimpl_42.scala │ │ │ ├── reify_newimpl_43.check │ │ │ ├── reify_newimpl_43.scala │ │ │ ├── reify_newimpl_44.check │ │ │ ├── reify_newimpl_44.scala │ │ │ ├── reify_newimpl_45.check │ │ │ ├── reify_newimpl_45.scala │ │ │ ├── reify_newimpl_47.check │ │ │ ├── reify_newimpl_47.scala │ │ │ ├── reify_newimpl_48.check │ │ │ ├── reify_newimpl_48.scala │ │ │ ├── reify_newimpl_49.check │ │ │ ├── reify_newimpl_49.scala │ │ │ ├── reify_newimpl_50.check │ │ │ ├── reify_newimpl_50.scala │ │ │ ├── reify_newimpl_51.check │ │ │ ├── reify_newimpl_51.scala │ │ │ ├── reify_newimpl_52.check │ │ │ ├── reify_newimpl_52.scala │ │ │ ├── reify_printf.check │ │ │ ├── reify_printf.scala │ │ │ ├── reify_properties.check │ │ │ ├── reify_properties.scala │ │ │ ├── reify_renamed_term_basic.check │ │ │ ├── reify_renamed_term_basic.scala │ │ │ ├── reify_renamed_term_local_to_reifee.check │ │ │ ├── reify_renamed_term_local_to_reifee.scala │ │ │ ├── reify_renamed_term_overloaded_method.check │ │ │ ├── reify_renamed_term_overloaded_method.scala │ │ │ ├── reify_renamed_term_t5841.check │ │ │ ├── reify_renamed_term_t5841.scala │ │ │ ├── reify_renamed_type_basic.check │ │ │ ├── reify_renamed_type_basic.scala │ │ │ ├── reify_renamed_type_local_to_reifee.check │ │ │ ├── reify_renamed_type_local_to_reifee.scala │ │ │ ├── reify_renamed_type_spliceable.check │ │ │ ├── reify_renamed_type_spliceable.scala │ │ │ ├── reify_sort.check │ │ │ ├── reify_sort.scala │ │ │ ├── reify_sort1.check │ │ │ ├── reify_sort1.scala │ │ │ ├── reify_this.check │ │ │ ├── reify_this.scala │ │ │ ├── reify_timeofday.check │ │ │ ├── reify_timeofday.scala │ │ │ ├── reify_typerefs_1a.check │ │ │ ├── reify_typerefs_1a.scala │ │ │ ├── reify_typerefs_1b.check │ │ │ ├── reify_typerefs_1b.scala │ │ │ ├── reify_typerefs_2a.check │ │ │ ├── reify_typerefs_2a.scala │ │ │ ├── reify_typerefs_2b.check │ │ │ ├── reify_typerefs_2b.scala │ │ │ ├── reify_typerefs_3a.check │ │ │ ├── reify_typerefs_3a.scala │ │ │ ├── reify_typerefs_3b.check │ │ │ ├── reify_typerefs_3b.scala │ │ │ ├── reify_varargs.check │ │ │ ├── reify_varargs.scala │ │ │ ├── repl-assign.check │ │ │ ├── repl-assign.scala │ │ │ ├── repl-backticks.check │ │ │ ├── repl-backticks.scala │ │ │ ├── repl-bare-expr.check │ │ │ ├── repl-bare-expr.scala │ │ │ ├── repl-classbased.check │ │ │ ├── repl-classbased.scala │ │ │ ├── repl-colon-type.check │ │ │ ├── repl-colon-type.scala │ │ │ ├── repl-empty-package.check │ │ │ ├── repl-empty-package │ │ │ │ ├── s_1.scala │ │ │ │ └── s_2.scala │ │ │ ├── repl-implicits-nopredef.check │ │ │ ├── repl-implicits-nopredef.scala │ │ │ ├── repl-implicits.check │ │ │ ├── repl-implicits.scala │ │ │ ├── repl-inline.check │ │ │ ├── repl-inline.scala │ │ │ ├── repl-javap-def.scala │ │ │ ├── repl-javap-mem.scala │ │ │ ├── repl-javap-outdir │ │ │ │ ├── foo_1.scala │ │ │ │ └── run-repl_7.scala │ │ │ ├── repl-javap.scala │ │ │ ├── repl-kind.check │ │ │ ├── repl-kind.scala │ │ │ ├── repl-no-imports-no-predef-classbased.check │ │ │ ├── repl-no-imports-no-predef-classbased.scala │ │ │ ├── repl-no-imports-no-predef-power.check │ │ │ ├── repl-no-imports-no-predef-power.scala │ │ │ ├── repl-no-imports-no-predef.check │ │ │ ├── repl-no-imports-no-predef.scala │ │ │ ├── repl-no-uescape.check │ │ │ ├── repl-no-uescape.scala │ │ │ ├── repl-out-dir.check │ │ │ ├── repl-out-dir.scala │ │ │ ├── repl-parens.check │ │ │ ├── repl-parens.scala │ │ │ ├── repl-paste-2.check │ │ │ ├── repl-paste-2.scala │ │ │ ├── repl-paste-3.check │ │ │ ├── repl-paste-3.scala │ │ │ ├── repl-paste-4.pastie │ │ │ ├── repl-paste-4.scala │ │ │ ├── repl-paste-5.check │ │ │ ├── repl-paste-5.scala │ │ │ ├── repl-paste-6.check │ │ │ ├── repl-paste-6.scala │ │ │ ├── repl-paste-b.check │ │ │ ├── repl-paste-b.scala │ │ │ ├── repl-paste-parse.check │ │ │ ├── repl-paste-parse.scala │ │ │ ├── repl-paste-parse.script │ │ │ ├── repl-paste-raw-b.pastie │ │ │ ├── repl-paste-raw-b.scala │ │ │ ├── repl-paste-raw-c.pastie │ │ │ ├── repl-paste-raw-c.scala │ │ │ ├── repl-paste-raw.pastie │ │ │ ├── repl-paste-raw.scala │ │ │ ├── repl-paste.check │ │ │ ├── repl-paste.scala │ │ │ ├── repl-power.check │ │ │ ├── repl-power.scala │ │ │ ├── repl-reset.check │ │ │ ├── repl-reset.scala │ │ │ ├── repl-save.check │ │ │ ├── repl-save.scala │ │ │ ├── repl-serialization.check │ │ │ ├── repl-serialization.scala │ │ │ ├── repl-term-macros.check │ │ │ ├── repl-term-macros.scala │ │ │ ├── repl-transcript.check │ │ │ ├── repl-transcript.scala │ │ │ ├── repl-trim-stack-trace.check │ │ │ ├── repl-trim-stack-trace.scala │ │ │ ├── repl-type-verbose.check │ │ │ ├── repl-type-verbose.scala │ │ │ ├── resetattrs-this.check │ │ │ ├── resetattrs-this.scala │ │ │ ├── retclosure.check │ │ │ ├── retclosure.scala │ │ │ ├── retsynch.check │ │ │ ├── retsynch.scala │ │ │ ├── richWrapperEquals.scala │ │ │ ├── richs.check │ │ │ ├── richs.scala │ │ │ ├── run-bug4840.check │ │ │ ├── run-bug4840.scala │ │ │ ├── runtime-richChar.check │ │ │ ├── runtime-richChar.scala │ │ │ ├── runtime.check │ │ │ ├── runtime.scala │ │ │ ├── runtimeEval1.check │ │ │ ├── runtimeEval1.scala │ │ │ ├── runtimeEval2.check │ │ │ ├── runtimeEval2.scala │ │ │ ├── sammy_after_implicit_view.scala │ │ │ ├── sammy_cbn.scala │ │ │ ├── sammy_erasure_cce.scala │ │ │ ├── sammy_java8.scala │ │ │ ├── sammy_restrictions_LMF.check │ │ │ ├── sammy_restrictions_LMF.scala │ │ │ ├── sammy_return.scala │ │ │ ├── sammy_seriazable.scala │ │ │ ├── sammy_vararg_cbn.check │ │ │ ├── sammy_vararg_cbn.scala │ │ │ ├── sbt-icode-interface.check │ │ │ ├── sbt-icode-interface.scala │ │ │ ├── scalapInvokedynamic.check │ │ │ ├── scalapInvokedynamic.scala │ │ │ ├── scan.scala │ │ │ ├── sd143 │ │ │ │ ├── A.java │ │ │ │ └── Test.scala │ │ │ ├── sd167.check │ │ │ ├── sd167.scala │ │ │ ├── sd242.scala │ │ │ ├── sd275-java │ │ │ │ ├── A.java │ │ │ │ ├── DeleteMe.java │ │ │ │ ├── LeaveMe.java │ │ │ │ └── Test.scala │ │ │ ├── sd275.scala │ │ │ ├── sd304.check │ │ │ ├── sd304 │ │ │ │ ├── ReflectTest.scala │ │ │ │ └── Test.java │ │ │ ├── sd329.scala │ │ │ ├── sd336.scala │ │ │ ├── sd409.scala │ │ │ ├── search.check │ │ │ ├── search.scala │ │ │ ├── seqlike-kmp.check │ │ │ ├── seqlike-kmp.scala │ │ │ ├── sequenceComparisons.scala │ │ │ ├── serialize-stream.check │ │ │ ├── serialize-stream.scala │ │ │ ├── settings-parse.check │ │ │ ├── settings-parse.scala │ │ │ ├── shortClass.check │ │ │ ├── shortClass.scala │ │ │ ├── showdecl.check │ │ │ ├── showdecl │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── showraw_aliases.check │ │ │ ├── showraw_aliases.scala │ │ │ ├── showraw_mods.check │ │ │ ├── showraw_mods.scala │ │ │ ├── showraw_nosymbol.check │ │ │ ├── showraw_nosymbol.scala │ │ │ ├── showraw_tree.check │ │ │ ├── showraw_tree.scala │ │ │ ├── showraw_tree_ids.check │ │ │ ├── showraw_tree_ids.scala │ │ │ ├── showraw_tree_kinds.check │ │ │ ├── showraw_tree_kinds.scala │ │ │ ├── showraw_tree_types_ids.check │ │ │ ├── showraw_tree_types_ids.scala │ │ │ ├── showraw_tree_types_typed.check │ │ │ ├── showraw_tree_types_typed.scala │ │ │ ├── showraw_tree_types_untyped.check │ │ │ ├── showraw_tree_types_untyped.scala │ │ │ ├── showraw_tree_ultimate.check │ │ │ ├── showraw_tree_ultimate.scala │ │ │ ├── shutdownhooks.check │ │ │ ├── shutdownhooks.scala │ │ │ ├── slice-strings.scala │ │ │ ├── slices.check │ │ │ ├── slices.scala │ │ │ ├── sm-interpolator.scala │ │ │ ├── sort.check │ │ │ ├── sort.scala │ │ │ ├── spec-nlreturn.check │ │ │ ├── spec-nlreturn.scala │ │ │ ├── spec-self.check │ │ │ ├── spec-self.scala │ │ │ ├── static-module-method.check │ │ │ ├── static-module-method.scala │ │ │ ├── stream-stack-overflow-filter-map.scala │ │ │ ├── streamWithFilter.check │ │ │ ├── streamWithFilter.scala │ │ │ ├── stream_flatmap_odds.check │ │ │ ├── stream_flatmap_odds.scala │ │ │ ├── stream_length.check │ │ │ ├── stream_length.scala │ │ │ ├── streams.check │ │ │ ├── streams.scala │ │ │ ├── string-extractor.check │ │ │ ├── string-extractor.scala │ │ │ ├── stringbuilder-drop.scala │ │ │ ├── stringbuilder.scala │ │ │ ├── structural.check │ │ │ ├── structural.scala │ │ │ ├── synchronized.check │ │ │ ├── synchronized.flags │ │ │ ├── synchronized.scala │ │ │ ├── sysprops.scala │ │ │ ├── t0005.check │ │ │ ├── t0005.scala │ │ │ ├── t0017.check │ │ │ ├── t0017.scala │ │ │ ├── t0042.check │ │ │ ├── t0042.scala │ │ │ ├── t0048.check │ │ │ ├── t0048.scala │ │ │ ├── t0091.check │ │ │ ├── t0091.scala │ │ │ ├── t0325.check │ │ │ ├── t0325.scala │ │ │ ├── t0412.check │ │ │ ├── t0412.scala │ │ │ ├── t0421-new.check │ │ │ ├── t0421-new.scala │ │ │ ├── t0421-old.check │ │ │ ├── t0421-old.scala │ │ │ ├── t0432.scala │ │ │ ├── t0508.check │ │ │ ├── t0508.scala │ │ │ ├── t0528.check │ │ │ ├── t0528.scala │ │ │ ├── t0607.check │ │ │ ├── t0607.scala │ │ │ ├── t0631.check │ │ │ ├── t0631.scala │ │ │ ├── t0668.scala │ │ │ ├── t0677-new.scala │ │ │ ├── t0677-old.scala │ │ │ ├── t0807.check │ │ │ ├── t0807.scala │ │ │ ├── t0883.check │ │ │ ├── t0883.scala │ │ │ ├── t0911.scala │ │ │ ├── t0936.scala │ │ │ ├── t10009.scala │ │ │ ├── t10026.check │ │ │ ├── t10026.scala │ │ │ ├── t10032.check │ │ │ ├── t10032.scala │ │ │ ├── t10042 │ │ │ │ ├── Checks_0.scala │ │ │ │ ├── Subject_0.java │ │ │ │ ├── Subject_1.java │ │ │ │ └── Test_1.scala │ │ │ ├── t1005.check │ │ │ ├── t1005.scala │ │ │ ├── t10059 │ │ │ │ ├── A.java │ │ │ │ └── Test.scala │ │ │ ├── t10067.flags │ │ │ ├── t10067 │ │ │ │ ├── OuterClass.java │ │ │ │ └── Test.scala │ │ │ ├── t10069.scala │ │ │ ├── t10069b.scala │ │ │ ├── t10072.scala │ │ │ ├── t10075.scala │ │ │ ├── t10075b.check │ │ │ ├── t10075b │ │ │ │ ├── RetainedAnnotation_1.java │ │ │ │ └── Test_2.scala │ │ │ ├── t10097.check │ │ │ ├── t10097.flags │ │ │ ├── t10097.scala │ │ │ ├── t10171 │ │ │ │ └── Test.scala │ │ │ ├── t102.check │ │ │ ├── t102.scala │ │ │ ├── t10231 │ │ │ │ ├── A_1.java │ │ │ │ └── Test_2.scala │ │ │ ├── t10232.scala │ │ │ ├── t10233.scala │ │ │ ├── t10244.scala │ │ │ ├── t10249 │ │ │ │ ├── A.java │ │ │ │ └── Test.scala │ │ │ ├── t10261 │ │ │ │ ├── Companion_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t10283.flags │ │ │ ├── t10283.scala │ │ │ ├── t10284.check │ │ │ ├── t10284.scala │ │ │ ├── t10284.script │ │ │ ├── t10290.scala │ │ │ ├── t10291.scala │ │ │ ├── t10298.scala │ │ │ ├── t10334.scala │ │ │ ├── t10334b │ │ │ │ ├── A.java │ │ │ │ └── Test.scala │ │ │ ├── t10368 │ │ │ │ ├── Cache_1.java │ │ │ │ └── Test_2.scala │ │ │ ├── t10389.scala │ │ │ ├── t1042.check │ │ │ ├── t1042.scala │ │ │ ├── t10423 │ │ │ │ ├── A_1.scala │ │ │ │ └── A_2.scala │ │ │ ├── t10439.flags │ │ │ ├── t10439.scala │ │ │ ├── t1044.scala │ │ │ ├── t10450 │ │ │ │ ├── A.java │ │ │ │ └── Test.scala │ │ │ ├── t10454-1 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t10454-2 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t10471.scala │ │ │ ├── t1048.check │ │ │ ├── t1048.scala │ │ │ ├── t10522.check │ │ │ ├── t10522.scala │ │ │ ├── t107.check │ │ │ ├── t107.scala │ │ │ ├── t1074.check │ │ │ ├── t1074.scala │ │ │ ├── t1110.scala │ │ │ ├── t1141.check │ │ │ ├── t1141.scala │ │ │ ├── t1167.check │ │ │ ├── t1167.flags │ │ │ ├── t1167.scala │ │ │ ├── t1192.check │ │ │ ├── t1192.scala │ │ │ ├── t1195-new.check │ │ │ ├── t1195-new.scala │ │ │ ├── t1195-old.check │ │ │ ├── t1195-old.scala │ │ │ ├── t1220.scala │ │ │ ├── t1247.check │ │ │ ├── t1247.scala │ │ │ ├── t1300.check │ │ │ ├── t1300.scala │ │ │ ├── t1309.scala │ │ │ ├── t1323.check │ │ │ ├── t1323.scala │ │ │ ├── t1333.check │ │ │ ├── t1333.scala │ │ │ ├── t1360.check │ │ │ ├── t1360.scala │ │ │ ├── t1368.check │ │ │ ├── t1368.scala │ │ │ ├── t1373.scala │ │ │ ├── t1423.check │ │ │ ├── t1423.scala │ │ │ ├── t1427.check │ │ │ ├── t1427.scala │ │ │ ├── t1430.check │ │ │ ├── t1430 │ │ │ │ ├── Bar_1.java │ │ │ │ └── Test_2.scala │ │ │ ├── t1434.scala │ │ │ ├── t1459.check │ │ │ ├── t1459 │ │ │ │ ├── InheritingPrinter.scala │ │ │ │ ├── JavaPrinter.java │ │ │ │ ├── ScalaPrinter.scala │ │ │ │ ├── Test.java │ │ │ │ └── VarArg.java │ │ │ ├── t1459generic.check │ │ │ ├── t1459generic │ │ │ │ ├── Impl.scala │ │ │ │ ├── Test.java │ │ │ │ └── VarargGeneric.java │ │ │ ├── t1466.scala │ │ │ ├── t1500.check │ │ │ ├── t1500.scala │ │ │ ├── t1501.check │ │ │ ├── t1501.scala │ │ │ ├── t1503.check │ │ │ ├── t1503.scala │ │ │ ├── t1503_future.flags │ │ │ ├── t1503_future.scala │ │ │ ├── t1505.scala │ │ │ ├── t1524.check │ │ │ ├── t1524.scala │ │ │ ├── t153.check │ │ │ ├── t153.scala │ │ │ ├── t1535.check │ │ │ ├── t1535.scala │ │ │ ├── t1537.check │ │ │ ├── t1537.scala │ │ │ ├── t1591.check │ │ │ ├── t1591.scala │ │ │ ├── t1618.scala │ │ │ ├── t1672.scala │ │ │ ├── t1697.scala │ │ │ ├── t1718.check │ │ │ ├── t1718.scala │ │ │ ├── t1747.scala │ │ │ ├── t1766.scala │ │ │ ├── t1829.scala │ │ │ ├── t1909.check │ │ │ ├── t1909.scala │ │ │ ├── t1909b.scala │ │ │ ├── t1909c.scala │ │ │ ├── t1931.check │ │ │ ├── t1931.scala │ │ │ ├── t1939.scala │ │ │ ├── t1987.check │ │ │ ├── t1987.flags │ │ │ ├── t1987.scala │ │ │ ├── t1987b.check │ │ │ ├── t1987b │ │ │ │ ├── PullIteratees.scala │ │ │ │ ├── a.scala │ │ │ │ ├── cce_test.scala │ │ │ │ ├── pkg1.scala │ │ │ │ └── pkg2.scala │ │ │ ├── t1994.scala │ │ │ ├── t2005.scala │ │ │ ├── t2027.check │ │ │ ├── t2027.scala │ │ │ ├── t2029.check │ │ │ ├── t2029.scala │ │ │ ├── t2030.check │ │ │ ├── t2030.scala │ │ │ ├── t2074_2.check │ │ │ ├── t2074_2.scala │ │ │ ├── t2075.scala │ │ │ ├── t2087-and-2400.scala │ │ │ ├── t2106.check │ │ │ ├── t2106.flags │ │ │ ├── t2106.scala │ │ │ ├── t2111.check │ │ │ ├── t2111.scala │ │ │ ├── t2127.scala │ │ │ ├── t2147.check │ │ │ ├── t2147.scala │ │ │ ├── t216.check │ │ │ ├── t216.scala │ │ │ ├── t2162.check │ │ │ ├── t2162.scala │ │ │ ├── t2175.scala │ │ │ ├── t2176.check │ │ │ ├── t2176.scala │ │ │ ├── t2177.check │ │ │ ├── t2177.scala │ │ │ ├── t2212.check │ │ │ ├── t2212.scala │ │ │ ├── t2236-new.scala │ │ │ ├── t2236-old.scala │ │ │ ├── t2241.scala │ │ │ ├── t2250.scala │ │ │ ├── t2251.check │ │ │ ├── t2251.flags │ │ │ ├── t2251.scala │ │ │ ├── t2251b.check │ │ │ ├── t2251b.flags │ │ │ ├── t2251b.scala │ │ │ ├── t2255.check │ │ │ ├── t2255.scala │ │ │ ├── t2296c.check │ │ │ ├── t2296c │ │ │ │ ├── Action.java │ │ │ │ ├── Display.java │ │ │ │ ├── Global.java │ │ │ │ ├── ScalaActivity.scala │ │ │ │ ├── Test.scala │ │ │ │ └── a.scala │ │ │ ├── t2308a.check │ │ │ ├── t2308a.scala │ │ │ ├── t2316_run.scala │ │ │ ├── t2318.check │ │ │ ├── t2318.scala │ │ │ ├── t2333.scala │ │ │ ├── t2337.check │ │ │ ├── t2337.scala │ │ │ ├── t2378.scala │ │ │ ├── t2386-new.check │ │ │ ├── t2386-new.scala │ │ │ ├── t2417.check │ │ │ ├── t2417.scala │ │ │ ├── t2418.check │ │ │ ├── t2418.scala │ │ │ ├── t2446.check │ │ │ ├── t2446.scala │ │ │ ├── t2464 │ │ │ │ ├── Annotated.java │ │ │ │ ├── Connect.java │ │ │ │ └── Test.scala │ │ │ ├── t2488.check │ │ │ ├── t2488.scala │ │ │ ├── t2503.scala │ │ │ ├── t2512.scala │ │ │ ├── t2514.scala │ │ │ ├── t2524.scala │ │ │ ├── t2526.scala │ │ │ ├── t2544.check │ │ │ ├── t2544.scala │ │ │ ├── t2552.check │ │ │ ├── t2552.scala │ │ │ ├── t2577.check │ │ │ ├── t2577.scala │ │ │ ├── t2594_tcpoly.scala │ │ │ ├── t261.check │ │ │ ├── t261.scala │ │ │ ├── t2636.scala │ │ │ ├── t266.scala │ │ │ ├── t2754.scala │ │ │ ├── t2755.check │ │ │ ├── t2755.scala │ │ │ ├── t2788.check │ │ │ ├── t2788.scala │ │ │ ├── t2800.check │ │ │ ├── t2800.scala │ │ │ ├── t2813.2.scala │ │ │ ├── t2818.check │ │ │ ├── t2818.scala │ │ │ ├── t2849.scala │ │ │ ├── t2857.check │ │ │ ├── t2857.scala │ │ │ ├── t2866.check │ │ │ ├── t2866.scala │ │ │ ├── t2867.scala │ │ │ ├── t2873.check │ │ │ ├── t2873.scala │ │ │ ├── t2876.scala │ │ │ ├── t2886.check │ │ │ ├── t2886.scala │ │ │ ├── t2946 │ │ │ │ ├── MyResponseCommon_2.scala │ │ │ │ └── ResponseCommon_1.scala │ │ │ ├── t2958.scala │ │ │ ├── t298.check │ │ │ ├── t298.scala │ │ │ ├── t3004.scala │ │ │ ├── t3026.check │ │ │ ├── t3026.scala │ │ │ ├── t3038.check │ │ │ ├── t3038.scala │ │ │ ├── t3038b.check │ │ │ ├── t3038b.flags │ │ │ ├── t3038b.scala │ │ │ ├── t3038c.check │ │ │ ├── t3038c │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── t3038d.flags │ │ │ ├── t3038d.scala │ │ │ ├── t3050.scala │ │ │ ├── t3088.scala │ │ │ ├── t3097.check │ │ │ ├── t3097.scala │ │ │ ├── t3112.check │ │ │ ├── t3112.scala │ │ │ ├── t3126.scala │ │ │ ├── t3150.scala │ │ │ ├── t3158.check │ │ │ ├── t3158.scala │ │ │ ├── t3175.check │ │ │ ├── t3175.scala │ │ │ ├── t3186.check │ │ │ ├── t3186.scala │ │ │ ├── t3199b.check │ │ │ ├── t3199b.scala │ │ │ ├── t3232.scala │ │ │ ├── t3235-minimal.check │ │ │ ├── t3235-minimal.flags │ │ │ ├── t3235-minimal.scala │ │ │ ├── t3236 │ │ │ │ ├── AnnotationTest.scala │ │ │ │ ├── BooleanAnnotation.java │ │ │ │ ├── ByteAnnotation.java │ │ │ │ ├── CharAnnotation.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DoubleAnnotation.java │ │ │ │ ├── FloatAnnotation.java │ │ │ │ ├── IntAnnotation.java │ │ │ │ ├── LongAnnotation.java │ │ │ │ ├── ShortAnnotation.java │ │ │ │ ├── StringAnnotation.java │ │ │ │ └── Test.scala │ │ │ ├── t3241.check │ │ │ ├── t3241.scala │ │ │ ├── t3242.check │ │ │ ├── t3242.scala │ │ │ ├── t3242b.scala │ │ │ ├── t3269.check │ │ │ ├── t3269.scala │ │ │ ├── t3273.scala │ │ │ ├── t3326.check │ │ │ ├── t3326.scala │ │ │ ├── t3327.check │ │ │ ├── t3327.scala │ │ │ ├── t3346a.check │ │ │ ├── t3346a.scala │ │ │ ├── t3346d.scala │ │ │ ├── t3346e.check │ │ │ ├── t3346e.scala │ │ │ ├── t3346f.check │ │ │ ├── t3346f.scala │ │ │ ├── t3346g.check │ │ │ ├── t3346g.scala │ │ │ ├── t3346h.check │ │ │ ├── t3346h.scala │ │ │ ├── t3346j.check │ │ │ ├── t3346j.scala │ │ │ ├── t3353.check │ │ │ ├── t3353.scala │ │ │ ├── t3361.check │ │ │ ├── t3361.scala │ │ │ ├── t3368-b.check │ │ │ ├── t3368-b.scala │ │ │ ├── t3368-c.check │ │ │ ├── t3368-c.scala │ │ │ ├── t3368-d.check │ │ │ ├── t3368-d.scala │ │ │ ├── t3368.check │ │ │ ├── t3368.scala │ │ │ ├── t3376.check │ │ │ ├── t3376.scala │ │ │ ├── t3395.check │ │ │ ├── t3395.scala │ │ │ ├── t3397.scala │ │ │ ├── t3425.check │ │ │ ├── t3425.scala │ │ │ ├── t3425b.check │ │ │ ├── t3425b │ │ │ │ ├── Base_1.scala │ │ │ │ └── Generated_2.scala │ │ │ ├── t3452.check │ │ │ ├── t3452.scala │ │ │ ├── t3452a.check │ │ │ ├── t3452a │ │ │ │ ├── J_2.java │ │ │ │ ├── S_1.scala │ │ │ │ └── S_3.scala │ │ │ ├── t3452b.check │ │ │ ├── t3452b │ │ │ │ ├── J_2.java │ │ │ │ ├── S_1.scala │ │ │ │ └── S_3.scala │ │ │ ├── t3452c.check │ │ │ ├── t3452c.scala │ │ │ ├── t3452d │ │ │ │ ├── A.scala │ │ │ │ └── Test.java │ │ │ ├── t3452e │ │ │ │ ├── A.scala │ │ │ │ ├── B.java │ │ │ │ └── Test.scala │ │ │ ├── t3452f.scala │ │ │ ├── t3452g │ │ │ │ ├── A.scala │ │ │ │ └── Test.java │ │ │ ├── t3452h.scala │ │ │ ├── t3487.scala │ │ │ ├── t3488.check │ │ │ ├── t3488.scala │ │ │ ├── t3493.scala │ │ │ ├── t3496.scala │ │ │ ├── t3502.scala │ │ │ ├── t3507-new.check │ │ │ ├── t3507-new.scala │ │ │ ├── t3508.scala │ │ │ ├── t3509.flags │ │ │ ├── t3509.scala │ │ │ ├── t3511.scala │ │ │ ├── t3518.scala │ │ │ ├── t3529.scala │ │ │ ├── t3530.check │ │ │ ├── t3530.scala │ │ │ ├── t3540.scala │ │ │ ├── t3563.scala │ │ │ ├── t3569.check │ │ │ ├── t3569.flags │ │ │ ├── t3569.scala │ │ │ ├── t3575.check │ │ │ ├── t3575.scala │ │ │ ├── t3580.scala │ │ │ ├── t3603.scala │ │ │ ├── t3613.scala │ │ │ ├── t3616.check │ │ │ ├── t3616.scala │ │ │ ├── t3619.scala │ │ │ ├── t363.check │ │ │ ├── t363.scala │ │ │ ├── t3645.scala │ │ │ ├── t3647.check │ │ │ ├── t3647.scala │ │ │ ├── t3651.scala │ │ │ ├── t3667.check │ │ │ ├── t3667.scala │ │ │ ├── t3670.check │ │ │ ├── t3670.scala │ │ │ ├── t3687.check │ │ │ ├── t3687.scala │ │ │ ├── t3699.scala │ │ │ ├── t3702.check │ │ │ ├── t3702.scala │ │ │ ├── t3714.scala │ │ │ ├── t3719.check │ │ │ ├── t3719.scala │ │ │ ├── t3726.check │ │ │ ├── t3726.scala │ │ │ ├── t3758-old.scala │ │ │ ├── t3760.scala │ │ │ ├── t3761-overload-byname.check │ │ │ ├── t3761-overload-byname.scala │ │ │ ├── t3763.scala │ │ │ ├── t3798.check │ │ │ ├── t3798.scala │ │ │ ├── t3829.scala │ │ │ ├── t3832.scala │ │ │ ├── t3835.check │ │ │ ├── t3835.scala │ │ │ ├── t3855.scala │ │ │ ├── t3877.check │ │ │ ├── t3877.scala │ │ │ ├── t3887.scala │ │ │ ├── t3888.check │ │ │ ├── t3888.scala │ │ │ ├── t3895.check │ │ │ ├── t3895.flags │ │ │ ├── t3895.scala │ │ │ ├── t3895b.scala │ │ │ ├── t3897.check │ │ │ ├── t3897.flags │ │ │ ├── t3897 │ │ │ │ ├── J_2.java │ │ │ │ ├── a_1.scala │ │ │ │ └── a_2.scala │ │ │ ├── t3923.scala │ │ │ ├── t3932.check │ │ │ ├── t3932.scala │ │ │ ├── t3935.scala │ │ │ ├── t3950.check │ │ │ ├── t3950.scala │ │ │ ├── t3964.check │ │ │ ├── t3964.scala │ │ │ ├── t3970.check │ │ │ ├── t3970.scala │ │ │ ├── t3980.check │ │ │ ├── t3980.scala │ │ │ ├── t3984.scala │ │ │ ├── t3989.scala │ │ │ ├── t3994.scala │ │ │ ├── t3996.check │ │ │ ├── t3996.scala │ │ │ ├── t4013.scala │ │ │ ├── t4013b.scala │ │ │ ├── t4013c.scala │ │ │ ├── t4023.check │ │ │ ├── t4023.scala │ │ │ ├── t4024.scala │ │ │ ├── t4025.check │ │ │ ├── t4025.scala │ │ │ ├── t4027.check │ │ │ ├── t4027.scala │ │ │ ├── t4047.check │ │ │ ├── t4047.scala │ │ │ ├── t405.scala │ │ │ ├── t4054.scala │ │ │ ├── t4062.check │ │ │ ├── t4062.scala │ │ │ ├── t4072.flags │ │ │ ├── t4072.scala │ │ │ ├── t408.scala │ │ │ ├── t4080.check │ │ │ ├── t4080.scala │ │ │ ├── t4110-new.check │ │ │ ├── t4110-new.scala │ │ │ ├── t4110-old.check │ │ │ ├── t4110-old.scala │ │ │ ├── t4119 │ │ │ │ ├── J.java │ │ │ │ └── S.scala │ │ │ ├── t4122.scala │ │ │ ├── t4124.check │ │ │ ├── t4124.scala │ │ │ ├── t4147.scala │ │ │ ├── t4148.check │ │ │ ├── t4148.scala │ │ │ ├── t4171.check │ │ │ ├── t4171.scala │ │ │ ├── t4172.check │ │ │ ├── t4172.scala │ │ │ ├── t4190.check │ │ │ ├── t4190.scala │ │ │ ├── t4201.scala │ │ │ ├── t4216.check │ │ │ ├── t4216.scala │ │ │ ├── t4238 │ │ │ │ ├── J_1.java │ │ │ │ └── s_2.scala │ │ │ ├── t4283.check │ │ │ ├── t4283 │ │ │ │ ├── AbstractFoo.java │ │ │ │ ├── ScalaBipp.scala │ │ │ │ └── Test.scala │ │ │ ├── t4283b │ │ │ │ ├── AbstractFoo.java │ │ │ │ ├── ScalaBipp.scala │ │ │ │ └── Test.scala │ │ │ ├── t4285.check │ │ │ ├── t4285.flags │ │ │ ├── t4285.scala │ │ │ ├── t4288.scala │ │ │ ├── t429.check │ │ │ ├── t429.scala │ │ │ ├── t4294.scala │ │ │ ├── t4297.scala │ │ │ ├── t4300.check │ │ │ ├── t4300.scala │ │ │ ├── t4317.check │ │ │ ├── t4317.flags │ │ │ ├── t4317 │ │ │ │ ├── J_2.java │ │ │ │ ├── S_1.scala │ │ │ │ └── S_3.scala │ │ │ ├── t4332.check │ │ │ ├── t4332.scala │ │ │ ├── t4332b.scala │ │ │ ├── t4351.check │ │ │ ├── t4351.scala │ │ │ ├── t4396.check │ │ │ ├── t4396.scala │ │ │ ├── t4398.scala │ │ │ ├── t4415.scala │ │ │ ├── t4426.scala │ │ │ ├── t4461.check │ │ │ ├── t4461.scala │ │ │ ├── t4482.check │ │ │ ├── t4482.scala │ │ │ ├── t4535.check │ │ │ ├── t4535.scala │ │ │ ├── t4536.check │ │ │ ├── t4536.flags │ │ │ ├── t4536.scala │ │ │ ├── t4537.check │ │ │ ├── t4537 │ │ │ │ ├── a.scala │ │ │ │ ├── b.scala │ │ │ │ ├── c.scala │ │ │ │ └── d.scala │ │ │ ├── t4542.check │ │ │ ├── t4542.scala │ │ │ ├── t4558.scala │ │ │ ├── t4560.check │ │ │ ├── t4560.scala │ │ │ ├── t4560b.check │ │ │ ├── t4560b.scala │ │ │ ├── t4565_1.check │ │ │ ├── t4565_1.scala │ │ │ ├── t4570.check │ │ │ ├── t4570.scala │ │ │ ├── t4577.scala │ │ │ ├── t4582.scala │ │ │ ├── t4592.check │ │ │ ├── t4592.scala │ │ │ ├── t4594-repl-settings.check │ │ │ ├── t4594-repl-settings.scala │ │ │ ├── t4601.check │ │ │ ├── t4601.scala │ │ │ ├── t4617.check │ │ │ ├── t4617.scala │ │ │ ├── t4625.check │ │ │ ├── t4625.scala │ │ │ ├── t4625.script │ │ │ ├── t4625b.check │ │ │ ├── t4625b.scala │ │ │ ├── t4625b.script │ │ │ ├── t4625c.check │ │ │ ├── t4625c.scala │ │ │ ├── t4625c.script │ │ │ ├── t4656.check │ │ │ ├── t4656.scala │ │ │ ├── t4658.check │ │ │ ├── t4658.scala │ │ │ ├── t4660.scala │ │ │ ├── t4671.check │ │ │ ├── t4671.scala │ │ │ ├── t4680.check │ │ │ ├── t4680.scala │ │ │ ├── t4697.check │ │ │ ├── t4697.scala │ │ │ ├── t4700.check │ │ │ ├── t4700.scala │ │ │ ├── t4709.scala │ │ │ ├── t4710.check │ │ │ ├── t4710.scala │ │ │ ├── t4729.check │ │ │ ├── t4729 │ │ │ │ ├── J_1.java │ │ │ │ └── S_2.scala │ │ │ ├── t4742.flags │ │ │ ├── t4742.scala │ │ │ ├── t4750.check │ │ │ ├── t4750.scala │ │ │ ├── t4752.scala │ │ │ ├── t4753.check │ │ │ ├── t4753.scala │ │ │ ├── t4766.check │ │ │ ├── t4766.scala │ │ │ ├── t4770.check │ │ │ ├── t4770.scala │ │ │ ├── t4777.check │ │ │ ├── t4777.scala │ │ │ ├── t4788-separate-compilation.check │ │ │ ├── t4788-separate-compilation │ │ │ │ ├── CAnnotation_1.java │ │ │ │ ├── C_1.scala │ │ │ │ ├── D_1.scala │ │ │ │ ├── RAnnotation_1.java │ │ │ │ ├── R_1.scala │ │ │ │ ├── SAnnotation_1.java │ │ │ │ ├── S_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t4788.check │ │ │ ├── t4788 │ │ │ │ ├── C.scala │ │ │ │ ├── CAnnotation.java │ │ │ │ ├── D.scala │ │ │ │ ├── R.scala │ │ │ │ ├── RAnnotation.java │ │ │ │ ├── S.scala │ │ │ │ ├── SAnnotation.java │ │ │ │ └── Test.scala │ │ │ ├── t4794.check │ │ │ ├── t4794.scala │ │ │ ├── t4809.scala │ │ │ ├── t4813.check │ │ │ ├── t4813.scala │ │ │ ├── t4827.scala │ │ │ ├── t4827b.scala │ │ │ ├── t4835.check │ │ │ ├── t4835.scala │ │ │ ├── t4841-isolate-plugins.check │ │ │ ├── t4841-isolate-plugins │ │ │ │ ├── ploogin.scala │ │ │ │ └── t4841-isolate-plugin.scala │ │ │ ├── t4841-no-plugin.check │ │ │ ├── t4841-no-plugin.scala │ │ │ ├── t4859.check │ │ │ ├── t4859.scala │ │ │ ├── t4871.check │ │ │ ├── t4871.scala │ │ │ ├── t4891.check │ │ │ ├── t4891 │ │ │ │ ├── J_2.java │ │ │ │ ├── S_1.scala │ │ │ │ └── S_3.scala │ │ │ ├── t4897.check │ │ │ ├── t4897.scala │ │ │ ├── t493.scala │ │ │ ├── t4930.check │ │ │ ├── t4930.scala │ │ │ ├── t4935.check │ │ │ ├── t4935.flags │ │ │ ├── t4935.scala │ │ │ ├── t4950.scala │ │ │ ├── t4954.scala │ │ │ ├── t498.check │ │ │ ├── t498.scala │ │ │ ├── t4996.check │ │ │ ├── t4996.scala │ │ │ ├── t5009.check │ │ │ ├── t5009.scala │ │ │ ├── t5018.scala │ │ │ ├── t5037.check │ │ │ ├── t5037.scala │ │ │ ├── t5040.check │ │ │ ├── t5040.flags │ │ │ ├── t5040.scala │ │ │ ├── t5045.check │ │ │ ├── t5045.scala │ │ │ ├── t5053.check │ │ │ ├── t5053.scala │ │ │ ├── t5064.check │ │ │ ├── t5064.scala │ │ │ ├── t5072.check │ │ │ ├── t5072.scala │ │ │ ├── t5080.check │ │ │ ├── t5080.scala │ │ │ ├── t5105.check │ │ │ ├── t5105.scala │ │ │ ├── t5125.check │ │ │ ├── t5125.scala │ │ │ ├── t5125b.check │ │ │ ├── t5125b.scala │ │ │ ├── t5134.scala │ │ │ ├── t5158.check │ │ │ ├── t5158.scala │ │ │ ├── t5162.scala │ │ │ ├── t5171.check │ │ │ ├── t5171.scala │ │ │ ├── t5201.check │ │ │ ├── t5201.scala │ │ │ ├── t5224.check │ │ │ ├── t5224.scala │ │ │ ├── t5225_1.check │ │ │ ├── t5225_1.scala │ │ │ ├── t5225_2.check │ │ │ ├── t5225_2.scala │ │ │ ├── t5229_1.scala │ │ │ ├── t5229_2.check │ │ │ ├── t5229_2.scala │ │ │ ├── t5230.check │ │ │ ├── t5230.scala │ │ │ ├── t5256a.check │ │ │ ├── t5256a.scala │ │ │ ├── t5256b.check │ │ │ ├── t5256b.scala │ │ │ ├── t5256c.check │ │ │ ├── t5256c.scala │ │ │ ├── t5256d.check │ │ │ ├── t5256d.scala │ │ │ ├── t5256e.check │ │ │ ├── t5256e.scala │ │ │ ├── t5256f.check │ │ │ ├── t5256f.scala │ │ │ ├── t5256g.check │ │ │ ├── t5256g.scala │ │ │ ├── t5256h.check │ │ │ ├── t5256h.scala │ │ │ ├── t5258a.check │ │ │ ├── t5258a.scala │ │ │ ├── t5262.check │ │ │ ├── t5262.scala │ │ │ ├── t5266_1.check │ │ │ ├── t5266_1.scala │ │ │ ├── t5266_2.check │ │ │ ├── t5266_2.scala │ │ │ ├── t5269.check │ │ │ ├── t5269.scala │ │ │ ├── t5270.check │ │ │ ├── t5270.scala │ │ │ ├── t5271_1.check │ │ │ ├── t5271_1.scala │ │ │ ├── t5271_2.check │ │ │ ├── t5271_2.scala │ │ │ ├── t5271_3.check │ │ │ ├── t5271_3.scala │ │ │ ├── t5271_4.scala │ │ │ ├── t5272_1_newpatmat.check │ │ │ ├── t5272_1_newpatmat.scala │ │ │ ├── t5272_1_oldpatmat.check │ │ │ ├── t5272_1_oldpatmat.scala │ │ │ ├── t5272_2_newpatmat.check │ │ │ ├── t5272_2_newpatmat.scala │ │ │ ├── t5272_2_oldpatmat.check │ │ │ ├── t5272_2_oldpatmat.scala │ │ │ ├── t5273_1_newpatmat.check │ │ │ ├── t5273_1_newpatmat.scala │ │ │ ├── t5273_1_oldpatmat.check │ │ │ ├── t5273_1_oldpatmat.scala │ │ │ ├── t5273_2a_newpatmat.check │ │ │ ├── t5273_2a_newpatmat.scala │ │ │ ├── t5273_2a_oldpatmat.check │ │ │ ├── t5273_2a_oldpatmat.scala │ │ │ ├── t5273_2b_newpatmat.check │ │ │ ├── t5273_2b_newpatmat.scala │ │ │ ├── t5273_2b_oldpatmat.check │ │ │ ├── t5273_2b_oldpatmat.scala │ │ │ ├── t5274_1.check │ │ │ ├── t5274_1.scala │ │ │ ├── t5274_2.check │ │ │ ├── t5274_2.scala │ │ │ ├── t5275.check │ │ │ ├── t5275.scala │ │ │ ├── t5276_1a.check │ │ │ ├── t5276_1a.scala │ │ │ ├── t5276_1b.check │ │ │ ├── t5276_1b.scala │ │ │ ├── t5276_2a.check │ │ │ ├── t5276_2a.scala │ │ │ ├── t5276_2b.check │ │ │ ├── t5276_2b.scala │ │ │ ├── t5277_1.check │ │ │ ├── t5277_1.scala │ │ │ ├── t5277_2.check │ │ │ ├── t5277_2.scala │ │ │ ├── t5279.check │ │ │ ├── t5279.scala │ │ │ ├── t5284.check │ │ │ ├── t5284.scala │ │ │ ├── t5284b.check │ │ │ ├── t5284b.scala │ │ │ ├── t5284c.check │ │ │ ├── t5284c.scala │ │ │ ├── t5294.scala │ │ │ ├── t5300.scala │ │ │ ├── t5328.check │ │ │ ├── t5328.scala │ │ │ ├── t5334_1.check │ │ │ ├── t5334_1.scala │ │ │ ├── t5334_2.check │ │ │ ├── t5334_2.scala │ │ │ ├── t5335.check │ │ │ ├── t5335.scala │ │ │ ├── t5356.check │ │ │ ├── t5356.scala │ │ │ ├── t5377.check │ │ │ ├── t5377.scala │ │ │ ├── t5380.check │ │ │ ├── t5380.scala │ │ │ ├── t5385.check │ │ │ ├── t5385.scala │ │ │ ├── t5387.scala │ │ │ ├── t5394.scala │ │ │ ├── t5407.check │ │ │ ├── t5407.scala │ │ │ ├── t5415.scala │ │ │ ├── t5418.scala │ │ │ ├── t5418a.check │ │ │ ├── t5418a.scala │ │ │ ├── t5418b.check │ │ │ ├── t5418b.scala │ │ │ ├── t5419.check │ │ │ ├── t5419.scala │ │ │ ├── t5423.check │ │ │ ├── t5423.scala │ │ │ ├── t5428.check │ │ │ ├── t5428.scala │ │ │ ├── t5463.scala │ │ │ ├── t5488-fn.check │ │ │ ├── t5488-fn.scala │ │ │ ├── t5488.check │ │ │ ├── t5488.scala │ │ │ ├── t5500.check │ │ │ ├── t5500.scala │ │ │ ├── t5500b.check │ │ │ ├── t5500b.scala │ │ │ ├── t5530.check │ │ │ ├── t5530.scala │ │ │ ├── t5532.scala │ │ │ ├── t5535.check │ │ │ ├── t5535.scala │ │ │ ├── t5537.check │ │ │ ├── t5537.scala │ │ │ ├── t5543.check │ │ │ ├── t5543.scala │ │ │ ├── t5544.check │ │ │ ├── t5544 │ │ │ │ ├── Api_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t5545.scala │ │ │ ├── t5552.check │ │ │ ├── t5552.scala │ │ │ ├── t5565.scala │ │ │ ├── t5568.check │ │ │ ├── t5568.flags │ │ │ ├── t5568.scala │ │ │ ├── t5577.check │ │ │ ├── t5577.scala │ │ │ ├── t5583.check │ │ │ ├── t5583.scala │ │ │ ├── t5588.check │ │ │ ├── t5588.scala │ │ │ ├── t5590.check │ │ │ ├── t5590.scala │ │ │ ├── t5603.check │ │ │ ├── t5603.scala │ │ │ ├── t5604.check │ │ │ ├── t5604.scala │ │ │ ├── t5608.check │ │ │ ├── t5608.scala │ │ │ ├── t5610.check │ │ │ ├── t5610.scala │ │ │ ├── t5610a.check │ │ │ ├── t5610a.scala │ │ │ ├── t5612.check │ │ │ ├── t5612.scala │ │ │ ├── t5614.check │ │ │ ├── t5614.scala │ │ │ ├── t5629.check │ │ │ ├── t5629.scala │ │ │ ├── t5629b.check │ │ │ ├── t5629b.scala │ │ │ ├── t5648.check │ │ │ ├── t5648.flags │ │ │ ├── t5648.scala │ │ │ ├── t5652.check │ │ │ ├── t5652 │ │ │ │ ├── t5652_1.scala │ │ │ │ └── t5652_2.scala │ │ │ ├── t5652b.check │ │ │ ├── t5652b │ │ │ │ ├── t5652b_1.scala │ │ │ │ └── t5652b_2.scala │ │ │ ├── t5652c.check │ │ │ ├── t5652c │ │ │ │ └── t5652c.scala │ │ │ ├── t5655.check │ │ │ ├── t5655.scala │ │ │ ├── t5656.check │ │ │ ├── t5656.scala │ │ │ ├── t5665.scala │ │ │ ├── t5676.check │ │ │ ├── t5676.flags │ │ │ ├── t5676.scala │ │ │ ├── t5680.check │ │ │ ├── t5680.scala │ │ │ ├── t5688.check │ │ │ ├── t5688.scala │ │ │ ├── t5699.check │ │ │ ├── t5699.scala │ │ │ ├── t5704.check │ │ │ ├── t5704.flags │ │ │ ├── t5704.scala │ │ │ ├── t5710-1.check │ │ │ ├── t5710-1.scala │ │ │ ├── t5710-2.check │ │ │ ├── t5710-2.scala │ │ │ ├── t5713.check │ │ │ ├── t5713.flags │ │ │ ├── t5713 │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t5717.scala │ │ │ ├── t5733.check │ │ │ ├── t5733.scala │ │ │ ├── t5753_1.check │ │ │ ├── t5753_1.flags │ │ │ ├── t5753_1 │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t5753_2.check │ │ │ ├── t5753_2.flags │ │ │ ├── t5753_2 │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t576.check │ │ │ ├── t576.scala │ │ │ ├── t5770.check │ │ │ ├── t5770.scala │ │ │ ├── t5789.check │ │ │ ├── t5789.scala │ │ │ ├── t5804.check │ │ │ ├── t5804.scala │ │ │ ├── t5816.check │ │ │ ├── t5816.scala │ │ │ ├── t5824.check │ │ │ ├── t5824.scala │ │ │ ├── t5830.check │ │ │ ├── t5830.flags │ │ │ ├── t5830.scala │ │ │ ├── t5840.scala │ │ │ ├── t5856.scala │ │ │ ├── t5857.scala │ │ │ ├── t5866.check │ │ │ ├── t5866.scala │ │ │ ├── t5867.check │ │ │ ├── t5867.scala │ │ │ ├── t5879.check │ │ │ ├── t5879.scala │ │ │ ├── t5880.scala │ │ │ ├── t5881.check │ │ │ ├── t5881.scala │ │ │ ├── t5894.scala │ │ │ ├── t5903a.check │ │ │ ├── t5903a.flags │ │ │ ├── t5903a │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t5903b.check │ │ │ ├── t5903b.flags │ │ │ ├── t5903b │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t5903c.check │ │ │ ├── t5903c.flags │ │ │ ├── t5903c │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t5903d.check │ │ │ ├── t5903d.flags │ │ │ ├── t5903d │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t5905-features.flags │ │ │ ├── t5905-features.scala │ │ │ ├── t5905b-features.check │ │ │ ├── t5905b-features.scala │ │ │ ├── t5907.check │ │ │ ├── t5907.scala │ │ │ ├── t5912.scala │ │ │ ├── t5914.check │ │ │ ├── t5914.scala │ │ │ ├── t5923a.check │ │ │ ├── t5923a │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t5923b.check │ │ │ ├── t5923b │ │ │ │ └── Test.scala │ │ │ ├── t5923c.scala │ │ │ ├── t5923d │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t5937.scala │ │ │ ├── t5938.scala │ │ │ ├── t594.check │ │ │ ├── t594.scala │ │ │ ├── t5940.scala │ │ │ ├── t5942.scala │ │ │ ├── t5943a1.check │ │ │ ├── t5943a1.scala │ │ │ ├── t5943a2.check │ │ │ ├── t5943a2.scala │ │ │ ├── t5966.check │ │ │ ├── t5966.scala │ │ │ ├── t5971.check │ │ │ ├── t5971.scala │ │ │ ├── t5974.check │ │ │ ├── t5974.scala │ │ │ ├── t5986.check │ │ │ ├── t5986.scala │ │ │ ├── t601.check │ │ │ ├── t601.scala │ │ │ ├── t6011b.check │ │ │ ├── t6011b.scala │ │ │ ├── t6011c.check │ │ │ ├── t6011c.scala │ │ │ ├── t6023.check │ │ │ ├── t6023.scala │ │ │ ├── t6028.check │ │ │ ├── t6028.scala │ │ │ ├── t603.check │ │ │ ├── t603.scala │ │ │ ├── t6063.check │ │ │ ├── t6063 │ │ │ │ ├── S_1.scala │ │ │ │ └── S_2.scala │ │ │ ├── t6064.scala │ │ │ ├── t6070.check │ │ │ ├── t6070.scala │ │ │ ├── t6077_patmat_cse_irrefutable.check │ │ │ ├── t6077_patmat_cse_irrefutable.scala │ │ │ ├── t6086-repl.check │ │ │ ├── t6086-repl.scala │ │ │ ├── t6086-vanilla.check │ │ │ ├── t6086-vanilla.scala │ │ │ ├── t6089.check │ │ │ ├── t6089.scala │ │ │ ├── t6090.scala │ │ │ ├── t6102.check │ │ │ ├── t6102.flags │ │ │ ├── t6102.scala │ │ │ ├── t6104.check │ │ │ ├── t6104.scala │ │ │ ├── t6111.check │ │ │ ├── t6111.scala │ │ │ ├── t6113.check │ │ │ ├── t6113.scala │ │ │ ├── t6114.scala │ │ │ ├── t6126.scala │ │ │ ├── t6130.scala │ │ │ ├── t6135.scala │ │ │ ├── t6146b.check │ │ │ ├── t6146b.scala │ │ │ ├── t6150.scala │ │ │ ├── t6154.check │ │ │ ├── t6154.scala │ │ │ ├── t6168 │ │ │ │ ├── Context.java │ │ │ │ ├── JavaTest.java │ │ │ │ ├── SomeClass.java │ │ │ │ ├── SomeClass2.java │ │ │ │ └── main.scala │ │ │ ├── t6168b │ │ │ │ ├── Context.java │ │ │ │ ├── JavaTest.java │ │ │ │ ├── SomeClass.java │ │ │ │ └── main.scala │ │ │ ├── t6175.scala │ │ │ ├── t6178.check │ │ │ ├── t6178.scala │ │ │ ├── t6181.check │ │ │ ├── t6181.scala │ │ │ ├── t6187.check │ │ │ ├── t6187.scala │ │ │ ├── t6187b.scala │ │ │ ├── t6188.check │ │ │ ├── t6188.flags │ │ │ ├── t6188.scala │ │ │ ├── t6194.check │ │ │ ├── t6194.scala │ │ │ ├── t6196.scala │ │ │ ├── t6197.scala │ │ │ ├── t6198.scala │ │ │ ├── t6199-mirror.check │ │ │ ├── t6199-mirror.scala │ │ │ ├── t6199-toolbox.check │ │ │ ├── t6199-toolbox.scala │ │ │ ├── t6200.scala │ │ │ ├── t6206.check │ │ │ ├── t6206.scala │ │ │ ├── t6220.scala │ │ │ ├── t6221.check │ │ │ ├── t6221 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t6223.check │ │ │ ├── t6223.scala │ │ │ ├── t6240-universe-code-gen.scala │ │ │ ├── t6240a.check │ │ │ ├── t6240a │ │ │ │ ├── StepOne.java │ │ │ │ ├── StepTwo.scala │ │ │ │ └── Test.scala │ │ │ ├── t6240b.check │ │ │ ├── t6240b │ │ │ │ ├── StepOne.java │ │ │ │ ├── StepThree.scala │ │ │ │ ├── StepTwo.scala │ │ │ │ └── Test.scala │ │ │ ├── t6246.check │ │ │ ├── t6246.scala │ │ │ ├── t6253a.scala │ │ │ ├── t6253b.scala │ │ │ ├── t6253c.scala │ │ │ ├── t6259.scala │ │ │ ├── t6260-delambdafy.check │ │ │ ├── t6260-delambdafy.scala │ │ │ ├── t6260.check │ │ │ ├── t6260.scala │ │ │ ├── t6260b.scala │ │ │ ├── t6260c.check │ │ │ ├── t6260c.scala │ │ │ ├── t6261.scala │ │ │ ├── t627.check │ │ │ ├── t627.scala │ │ │ ├── t6271.scala │ │ │ ├── t6272.check │ │ │ ├── t6272.scala │ │ │ ├── t6273.check │ │ │ ├── t6273.scala │ │ │ ├── t6277.check │ │ │ ├── t6277.scala │ │ │ ├── t6287.check │ │ │ ├── t6287.scala │ │ │ ├── t6288.check │ │ │ ├── t6288.scala │ │ │ ├── t629.check │ │ │ ├── t629.scala │ │ │ ├── t6290.scala │ │ │ ├── t6292.check │ │ │ ├── t6292.scala │ │ │ ├── t6308.check │ │ │ ├── t6308.scala │ │ │ ├── t6309.check │ │ │ ├── t6309.scala │ │ │ ├── t6318_derived.check │ │ │ ├── t6318_derived.scala │ │ │ ├── t6318_primitives.check │ │ │ ├── t6318_primitives.scala │ │ │ ├── t6320.check │ │ │ ├── t6320.scala │ │ │ ├── t6323b.check │ │ │ ├── t6323b.scala │ │ │ ├── t6327.check │ │ │ ├── t6327.flags │ │ │ ├── t6327.scala │ │ │ ├── t6329_repl.check │ │ │ ├── t6329_repl.scala │ │ │ ├── t6329_repl_bug.check │ │ │ ├── t6329_repl_bug.scala │ │ │ ├── t6329_vanilla.check │ │ │ ├── t6329_vanilla.scala │ │ │ ├── t6329_vanilla_bug.check │ │ │ ├── t6329_vanilla_bug.scala │ │ │ ├── t6331.check │ │ │ ├── t6331.scala │ │ │ ├── t6331b.check │ │ │ ├── t6331b.scala │ │ │ ├── t6333.scala │ │ │ ├── t6337a.scala │ │ │ ├── t6344.check │ │ │ ├── t6344.scala │ │ │ ├── t6353.check │ │ │ ├── t6353.scala │ │ │ ├── t6355.check │ │ │ ├── t6355.scala │ │ │ ├── t6370.scala │ │ │ ├── t6379.check │ │ │ ├── t6379 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t6380.check │ │ │ ├── t6380.scala │ │ │ ├── t6381.check │ │ │ ├── t6381.scala │ │ │ ├── t6385.scala │ │ │ ├── t6392a.check │ │ │ ├── t6392a.scala │ │ │ ├── t6392b.check │ │ │ ├── t6392b.scala │ │ │ ├── t6394a.check │ │ │ ├── t6394a.flags │ │ │ ├── t6394a │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t6394b.check │ │ │ ├── t6394b.flags │ │ │ ├── t6394b │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t6406-regextract.check │ │ │ ├── t6406-regextract.scala │ │ │ ├── t6411a.check │ │ │ ├── t6411a.scala │ │ │ ├── t6411b.check │ │ │ ├── t6411b.scala │ │ │ ├── t6434.check │ │ │ ├── t6434.scala │ │ │ ├── t6439.check │ │ │ ├── t6439.scala │ │ │ ├── t6440.check │ │ │ ├── t6440.scala │ │ │ ├── t6440b.check │ │ │ ├── t6440b.scala │ │ │ ├── t6443-by-name.check │ │ │ ├── t6443-by-name.scala │ │ │ ├── t6443-varargs.check │ │ │ ├── t6443-varargs.scala │ │ │ ├── t6443.scala │ │ │ ├── t6443b.scala │ │ │ ├── t6481.check │ │ │ ├── t6481.scala │ │ │ ├── t6488.scala │ │ │ ├── t6500.scala │ │ │ ├── t6502.scala │ │ │ ├── t6506.scala │ │ │ ├── t6507.check │ │ │ ├── t6507.scala │ │ │ ├── t6534.scala │ │ │ ├── t6541-option.scala │ │ │ ├── t6541.flags │ │ │ ├── t6541.scala │ │ │ ├── t6548.check │ │ │ ├── t6548 │ │ │ │ ├── JavaAnnotationWithNestedEnum_1.java │ │ │ │ └── Test_2.scala │ │ │ ├── t6549.check │ │ │ ├── t6549.scala │ │ │ ├── t6554.check │ │ │ ├── t6554.scala │ │ │ ├── t6555.check │ │ │ ├── t6555.scala │ │ │ ├── t6559.scala │ │ │ ├── t657.check │ │ │ ├── t657.scala │ │ │ ├── t6574b.check │ │ │ ├── t6574b.scala │ │ │ ├── t6584.check │ │ │ ├── t6584.scala │ │ │ ├── t6591_1.check │ │ │ ├── t6591_1.scala │ │ │ ├── t6591_2.check │ │ │ ├── t6591_2.scala │ │ │ ├── t6591_3.check │ │ │ ├── t6591_3.scala │ │ │ ├── t6591_5.check │ │ │ ├── t6591_5.scala │ │ │ ├── t6591_6.check │ │ │ ├── t6591_6.scala │ │ │ ├── t6591_7.check │ │ │ ├── t6591_7.scala │ │ │ ├── t6608.check │ │ │ ├── t6608.scala │ │ │ ├── t6611.scala │ │ │ ├── t6614.check │ │ │ ├── t6614.scala │ │ │ ├── t6622.check │ │ │ ├── t6622.scala │ │ │ ├── t6628.check │ │ │ ├── t6628.scala │ │ │ ├── t6632.check │ │ │ ├── t6632.scala │ │ │ ├── t6633.check │ │ │ ├── t6633.scala │ │ │ ├── t6634.check │ │ │ ├── t6634.scala │ │ │ ├── t6637.check │ │ │ ├── t6637.scala │ │ │ ├── t6644.scala │ │ │ ├── t6646.check │ │ │ ├── t6646.scala │ │ │ ├── t6662.check │ │ │ ├── t6662 │ │ │ │ ├── Macro_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t6663.check │ │ │ ├── t6663.flags │ │ │ ├── t6663.scala │ │ │ ├── t6666a.scala │ │ │ ├── t6669.scala │ │ │ ├── t6673.check │ │ │ ├── t6673.scala │ │ │ ├── t6677.scala │ │ │ ├── t6677b.scala │ │ │ ├── t6687.scala │ │ │ ├── t6690.check │ │ │ ├── t6690.scala │ │ │ ├── t6695.scala │ │ │ ├── t6706.scala │ │ │ ├── t6714.scala │ │ │ ├── t6715.scala │ │ │ ├── t6719.check │ │ │ ├── t6719.scala │ │ │ ├── t6725-1.check │ │ │ ├── t6725-1.scala │ │ │ ├── t6725-2.check │ │ │ ├── t6725-2.scala │ │ │ ├── t6731.check │ │ │ ├── t6731.flags │ │ │ ├── t6731.scala │ │ │ ├── t6732.check │ │ │ ├── t6732.scala │ │ │ ├── t6733.check │ │ │ ├── t6733.scala │ │ │ ├── t6745-2.scala │ │ │ ├── t6793.scala │ │ │ ├── t6793b.scala │ │ │ ├── t6793c.scala │ │ │ ├── t6814.check │ │ │ ├── t6814 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t6827.check │ │ │ ├── t6827.scala │ │ │ ├── t6853.scala │ │ │ ├── t6860.check │ │ │ ├── t6860.scala │ │ │ ├── t6863.check │ │ │ ├── t6863.scala │ │ │ ├── t6888.check │ │ │ ├── t6888.scala │ │ │ ├── t6900.scala │ │ │ ├── t6911.scala │ │ │ ├── t6928-run.check │ │ │ ├── t6928-run.scala │ │ │ ├── t6935.check │ │ │ ├── t6935.scala │ │ │ ├── t6937.check │ │ │ ├── t6937.scala │ │ │ ├── t6957.scala │ │ │ ├── t6968.check │ │ │ ├── t6968.scala │ │ │ ├── t6969.check │ │ │ ├── t6969.scala │ │ │ ├── t6988.check │ │ │ ├── t6988.scala │ │ │ ├── t6989.check │ │ │ ├── t6989 │ │ │ │ ├── JavaClass_1.java │ │ │ │ └── Test_2.scala │ │ │ ├── t6992.check │ │ │ ├── t6992 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7008-scala-defined.check │ │ │ ├── t7008-scala-defined │ │ │ │ ├── Impls_Macros_2.scala │ │ │ │ ├── ScalaClassWithCheckedExceptions_1.scala │ │ │ │ └── Test_3.scala │ │ │ ├── t7008.check │ │ │ ├── t7008 │ │ │ │ ├── Impls_Macros_2.scala │ │ │ │ ├── JavaClassWithCheckedExceptions_1.java │ │ │ │ └── Test_3.scala │ │ │ ├── t7015.check │ │ │ ├── t7015.scala │ │ │ ├── t7019.scala │ │ │ ├── t7039.check │ │ │ ├── t7039.scala │ │ │ ├── t7044.check │ │ │ ├── t7044 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7045.check │ │ │ ├── t7045.scala │ │ │ ├── t7046-1 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7046-2 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7046.check │ │ │ ├── t7046.scala │ │ │ ├── t7047.check │ │ │ ├── t7047 │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7088.check │ │ │ ├── t7088.scala │ │ │ ├── t7096.check │ │ │ ├── t7096.scala │ │ │ ├── t7106.check │ │ │ ├── t7106 │ │ │ │ ├── Analyzed_1.scala │ │ │ │ └── test.scala │ │ │ ├── t7120.check │ │ │ ├── t7120 │ │ │ │ ├── Base_1.scala │ │ │ │ ├── Derived_2.scala │ │ │ │ └── Run_3.scala │ │ │ ├── t7120b.check │ │ │ ├── t7120b.scala │ │ │ ├── t7139.check │ │ │ ├── t7139 │ │ │ │ ├── A_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7151.check │ │ │ ├── t7151.scala │ │ │ ├── t7157.check │ │ │ ├── t7157 │ │ │ │ ├── Impls_Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7171.check │ │ │ ├── t7171.flags │ │ │ ├── t7171.scala │ │ │ ├── t7181.check │ │ │ ├── t7181.scala │ │ │ ├── t7185.check │ │ │ ├── t7185.scala │ │ │ ├── t7187-2.13.flags │ │ │ ├── t7187-2.13.scala │ │ │ ├── t7198.check │ │ │ ├── t7198.scala │ │ │ ├── t720.scala │ │ │ ├── t7200.scala │ │ │ ├── t7214.scala │ │ │ ├── t7215.scala │ │ │ ├── t7223.check │ │ │ ├── t7223.scala │ │ │ ├── t7231.check │ │ │ ├── t7231.scala │ │ │ ├── t7235.check │ │ │ ├── t7235.scala │ │ │ ├── t7240 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7242.scala │ │ │ ├── t7246.check │ │ │ ├── t7246 │ │ │ │ ├── Outer.java │ │ │ │ └── Test.scala │ │ │ ├── t7246b.check │ │ │ ├── t7246b │ │ │ │ ├── Base.scala │ │ │ │ ├── Outer.java │ │ │ │ └── Test.scala │ │ │ ├── t7249.check │ │ │ ├── t7249.scala │ │ │ ├── t7269.scala │ │ │ ├── t7271.check │ │ │ ├── t7271.scala │ │ │ ├── t7290.check │ │ │ ├── t7290.scala │ │ │ ├── t7291.check │ │ │ ├── t7291.scala │ │ │ ├── t7300.check │ │ │ ├── t7300.scala │ │ │ ├── t7319.check │ │ │ ├── t7319.scala │ │ │ ├── t7325.check │ │ │ ├── t7325.scala │ │ │ ├── t7326.scala │ │ │ ├── t7328.check │ │ │ ├── t7328.scala │ │ │ ├── t7331a.check │ │ │ ├── t7331a.scala │ │ │ ├── t7331b.check │ │ │ ├── t7331b.scala │ │ │ ├── t7331c.check │ │ │ ├── t7331c.scala │ │ │ ├── t7336.scala │ │ │ ├── t7337.check │ │ │ ├── t7337.scala │ │ │ ├── t7341.flags │ │ │ ├── t7341.scala │ │ │ ├── t7359.check │ │ │ ├── t7359 │ │ │ │ ├── Cyclic_1.java │ │ │ │ └── Test_2.scala │ │ │ ├── t7374.check │ │ │ ├── t7374 │ │ │ │ ├── Some.scala │ │ │ │ └── Test.java │ │ │ ├── t7375a.check │ │ │ ├── t7375a.scala │ │ │ ├── t7375b.check │ │ │ ├── t7375b │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7398.scala │ │ │ ├── t7406.check │ │ │ ├── t7406.scala │ │ │ ├── t7407.check │ │ │ ├── t7407.flags │ │ │ ├── t7407.scala │ │ │ ├── t7407b.check │ │ │ ├── t7407b.scala │ │ │ ├── t7436.scala │ │ │ ├── t7439.check │ │ │ ├── t7439 │ │ │ │ ├── A_1.java │ │ │ │ ├── B_1.java │ │ │ │ └── Test_2.scala │ │ │ ├── t744.check │ │ │ ├── t744.scala │ │ │ ├── t7455.check │ │ │ ├── t7455 │ │ │ │ ├── Outer.java │ │ │ │ └── Test.scala │ │ │ ├── t7459a.scala │ │ │ ├── t7459b-optimize.flags │ │ │ ├── t7459b-optimize.scala │ │ │ ├── t7459b.scala │ │ │ ├── t7459c.scala │ │ │ ├── t7459d.scala │ │ │ ├── t7459f.scala │ │ │ ├── t7475b.check │ │ │ ├── t7475b.scala │ │ │ ├── t7482a.check │ │ │ ├── t7482a.scala │ │ │ ├── t7507.scala │ │ │ ├── t751.scala │ │ │ ├── t7510 │ │ │ │ ├── Ann_1.java │ │ │ │ └── Test_2.scala │ │ │ ├── t7521 │ │ │ │ ├── Test.scala │ │ │ │ └── Wrapper.scala │ │ │ ├── t7521b.check │ │ │ ├── t7521b.scala │ │ │ ├── t7533.check │ │ │ ├── t7533.scala │ │ │ ├── t7556.check │ │ │ ├── t7556 │ │ │ │ ├── Test_2.scala │ │ │ │ └── mega-class_1.scala │ │ │ ├── t7558.scala │ │ │ ├── t7569.check │ │ │ ├── t7569.scala │ │ │ ├── t7570a.check │ │ │ ├── t7570a.scala │ │ │ ├── t7570b.check │ │ │ ├── t7570b.scala │ │ │ ├── t7570c.check │ │ │ ├── t7570c.scala │ │ │ ├── t7571.scala │ │ │ ├── t7582-private-within.check │ │ │ ├── t7582-private-within │ │ │ │ ├── JavaPackagePrivate.java │ │ │ │ └── Test.scala │ │ │ ├── t7582.check │ │ │ ├── t7582.flags │ │ │ ├── t7582 │ │ │ │ ├── InlineHolder_2.scala │ │ │ │ └── PackageProtectedJava_1.java │ │ │ ├── t7582b.check │ │ │ ├── t7582b.flags │ │ │ ├── t7582b │ │ │ │ ├── InlineHolder_2.scala │ │ │ │ └── PackageProtectedJava_1.java │ │ │ ├── t7584.check │ │ │ ├── t7584.flags │ │ │ ├── t7584.scala │ │ │ ├── t7584b.scala │ │ │ ├── t7617a.check │ │ │ ├── t7617a │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7617b.check │ │ │ ├── t7617b │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7634.check │ │ │ ├── t7634.scala │ │ │ ├── t7657.check │ │ │ ├── t7657 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7700.check │ │ │ ├── t7700.scala │ │ │ ├── t7711-script-args.check │ │ │ ├── t7711-script-args.scala │ │ │ ├── t7711-script-args.script │ │ │ ├── t7715.check │ │ │ ├── t7715.scala │ │ │ ├── t7741a │ │ │ │ ├── GroovyInterface$1Dump.java │ │ │ │ ├── GroovyInterfaceDump.java │ │ │ │ └── Test.scala │ │ │ ├── t7741b.check │ │ │ ├── t7741b │ │ │ │ ├── HasInner.java │ │ │ │ └── Test.scala │ │ │ ├── t7747-repl.check │ │ │ ├── t7747-repl.scala │ │ │ ├── t7763.scala │ │ │ ├── t7775.scala │ │ │ ├── t7777.check │ │ │ ├── t7777 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7779.scala │ │ │ ├── t7791-script-linenums.check │ │ │ ├── t7791-script-linenums.scala │ │ │ ├── t7791-script-linenums.script │ │ │ ├── t7801.check │ │ │ ├── t7801.scala │ │ │ ├── t7805-repl-i.check │ │ │ ├── t7805-repl-i.scala │ │ │ ├── t7805-repl-i.script │ │ │ ├── t7807.check │ │ │ ├── t7807.scala │ │ │ ├── t7817-tree-gen.check │ │ │ ├── t7817-tree-gen.scala │ │ │ ├── t7817.scala │ │ │ ├── t7825.scala │ │ │ ├── t7850c.scala │ │ │ ├── t7850d.scala │ │ │ ├── t7852.flags │ │ │ ├── t7852.scala │ │ │ ├── t7859 │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── t7868.scala │ │ │ ├── t7868b.check │ │ │ ├── t7868b.scala │ │ │ ├── t7871.check │ │ │ ├── t7871 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t7876.scala │ │ │ ├── t7880.scala │ │ │ ├── t7899.scala │ │ │ ├── t7912.scala │ │ │ ├── t7932.check │ │ │ ├── t7932.scala │ │ │ ├── t7936 │ │ │ │ ├── A.java │ │ │ │ ├── B.java │ │ │ │ └── Test_1.scala │ │ │ ├── t7936b │ │ │ │ ├── A.java │ │ │ │ ├── B.java │ │ │ │ └── Test_1.scala │ │ │ ├── t7965.scala │ │ │ ├── t7974.check │ │ │ ├── t7974.flags │ │ │ ├── t7974 │ │ │ │ ├── Symbols.scala │ │ │ │ └── Test.scala │ │ │ ├── t7985.scala │ │ │ ├── t7985b.scala │ │ │ ├── t7992.scala │ │ │ ├── t7992b.scala │ │ │ ├── t8002.scala │ │ │ ├── t8010.scala │ │ │ ├── t8015-ffc.scala │ │ │ ├── t8017.flags │ │ │ ├── t8017 │ │ │ │ ├── value-class-lambda.scala │ │ │ │ └── value-class.scala │ │ │ ├── t8029.scala │ │ │ ├── t8046.check │ │ │ ├── t8046 │ │ │ │ ├── Test.scala │ │ │ │ └── t8046c.scala │ │ │ ├── t8047.check │ │ │ ├── t8047.scala │ │ │ ├── t8048a.check │ │ │ ├── t8048a │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8048b.check │ │ │ ├── t8048b │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8087.scala │ │ │ ├── t8091.check │ │ │ ├── t8091.scala │ │ │ ├── t8100.check │ │ │ ├── t8100.scala │ │ │ ├── t8104.check │ │ │ ├── t8104 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8133 │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── t8133b │ │ │ │ ├── A_1.scala │ │ │ │ └── B_2.scala │ │ │ ├── t8153.check │ │ │ ├── t8153.scala │ │ │ ├── t8177f.scala │ │ │ ├── t8188.scala │ │ │ ├── t8190.check │ │ │ ├── t8190.scala │ │ │ ├── t8192.check │ │ │ ├── t8192 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8196.check │ │ │ ├── t8196.scala │ │ │ ├── t8197.scala │ │ │ ├── t8197b.scala │ │ │ ├── t8199.scala │ │ │ ├── t8233.scala │ │ │ ├── t8245.scala │ │ │ ├── t8253.check │ │ │ ├── t8253.scala │ │ │ ├── t8266-octal-interp.check │ │ │ ├── t8266-octal-interp.flags │ │ │ ├── t8266-octal-interp.scala │ │ │ ├── t8280.check │ │ │ ├── t8280.scala │ │ │ ├── t8321.check │ │ │ ├── t8321 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8334.scala │ │ │ ├── t8395.scala │ │ │ ├── t8425.check │ │ │ ├── t8425 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8428.scala │ │ │ ├── t8433.check │ │ │ ├── t8433.scala │ │ │ ├── t8437.check │ │ │ ├── t8437 │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8442.check │ │ │ ├── t8442 │ │ │ │ ├── A_1.java │ │ │ │ ├── B_1.java │ │ │ │ ├── C_2.scala │ │ │ │ └── Test.scala │ │ │ ├── t8445.check │ │ │ ├── t8445.scala │ │ │ ├── t8502.scala │ │ │ ├── t8502b.scala │ │ │ ├── t8549b.scala │ │ │ ├── t8570.flags │ │ │ ├── t8570.scala │ │ │ ├── t8570a.check │ │ │ ├── t8570a.flags │ │ │ ├── t8570a.scala │ │ │ ├── t8574.scala │ │ │ ├── t8575.scala │ │ │ ├── t8575b.scala │ │ │ ├── t8575c.scala │ │ │ ├── t8601-closure-elim.flags │ │ │ ├── t8601-closure-elim.scala │ │ │ ├── t8601.flags │ │ │ ├── t8601.scala │ │ │ ├── t8601b.flags │ │ │ ├── t8601b.scala │ │ │ ├── t8601c.flags │ │ │ ├── t8601c.scala │ │ │ ├── t8601d.flags │ │ │ ├── t8601d.scala │ │ │ ├── t8601e.flags │ │ │ ├── t8601e │ │ │ │ ├── StaticInit.java │ │ │ │ └── Test.scala │ │ │ ├── t8607.scala │ │ │ ├── t8608-no-format.scala │ │ │ ├── t8610.check │ │ │ ├── t8610.flags │ │ │ ├── t8610.scala │ │ │ ├── t8611a.flags │ │ │ ├── t8611a.scala │ │ │ ├── t8611b.flags │ │ │ ├── t8611b.scala │ │ │ ├── t8611c.flags │ │ │ ├── t8611c.scala │ │ │ ├── t8637.check │ │ │ ├── t8637.scala │ │ │ ├── t8680.scala │ │ │ ├── t8690.check │ │ │ ├── t8690.scala │ │ │ ├── t8708_b.check │ │ │ ├── t8708_b │ │ │ │ ├── A_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8710.scala │ │ │ ├── t8738.scala │ │ │ ├── t874.check │ │ │ ├── t874.scala │ │ │ ├── t8756.check │ │ │ ├── t8756.scala │ │ │ ├── t8803.check │ │ │ ├── t8803.scala │ │ │ ├── t8823.scala │ │ │ ├── t8843-repl-xlat.check │ │ │ ├── t8843-repl-xlat.scala │ │ │ ├── t8845.scala │ │ │ ├── t8852a.scala │ │ │ ├── t8888.flags │ │ │ ├── t8888.scala │ │ │ ├── t889.check │ │ │ ├── t889.scala │ │ │ ├── t8893.scala │ │ │ ├── t8893b.scala │ │ │ ├── t8907.scala │ │ │ ├── t8918-unary-ids.check │ │ │ ├── t8918-unary-ids.scala │ │ │ ├── t8925.check │ │ │ ├── t8925.flags │ │ │ ├── t8925.scala │ │ │ ├── t8931.check │ │ │ ├── t8931.scala │ │ │ ├── t8933.check │ │ │ ├── t8933 │ │ │ │ ├── A_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t8933b │ │ │ │ ├── A.scala │ │ │ │ └── Test.scala │ │ │ ├── t8933c.scala │ │ │ ├── t8935-class.check │ │ │ ├── t8935-class.scala │ │ │ ├── t8935-object.check │ │ │ ├── t8935-object.scala │ │ │ ├── t8944 │ │ │ │ ├── A_1.scala │ │ │ │ ├── A_2.scala │ │ │ │ └── Test_1.scala │ │ │ ├── t8944b.scala │ │ │ ├── t8944c.check │ │ │ ├── t8944c.scala │ │ │ ├── t8960.scala │ │ │ ├── t9003.flags │ │ │ ├── t9003.scala │ │ │ ├── t9013 │ │ │ │ ├── Test.java │ │ │ │ └── test.scala │ │ │ ├── t9016.check │ │ │ ├── t9016.scala │ │ │ ├── t9027.check │ │ │ ├── t9027.scala │ │ │ ├── t9029.flags │ │ │ ├── t9029.scala │ │ │ ├── t9029b.check │ │ │ ├── t9029b.scala │ │ │ ├── t9029c.scala │ │ │ ├── t9030.scala │ │ │ ├── t9097.scala │ │ │ ├── t9102.scala │ │ │ ├── t9110.scala │ │ │ ├── t9114.scala │ │ │ ├── t9146.scala │ │ │ ├── t9170.check │ │ │ ├── t9170.scala │ │ │ ├── t9174.check │ │ │ ├── t9174.scala │ │ │ ├── t9178a.flags │ │ │ ├── t9178a.scala │ │ │ ├── t9182.check │ │ │ ├── t9182.scala │ │ │ ├── t920.check │ │ │ ├── t920.scala │ │ │ ├── t9200 │ │ │ │ ├── Test.java │ │ │ │ └── test.scala │ │ │ ├── t9206.check │ │ │ ├── t9206.scala │ │ │ ├── t9219.check │ │ │ ├── t9219.scala │ │ │ ├── t9223.scala │ │ │ ├── t9223b.scala │ │ │ ├── t9252.check │ │ │ ├── t9252.scala │ │ │ ├── t9268.check │ │ │ ├── t9268 │ │ │ │ ├── Java.java │ │ │ │ └── Test.scala │ │ │ ├── t9298 │ │ │ │ ├── Test.java │ │ │ │ └── VC.scala │ │ │ ├── t9298b │ │ │ │ ├── Test.java │ │ │ │ └── VC.scala │ │ │ ├── t9349 │ │ │ │ ├── data.scala │ │ │ │ └── test.scala │ │ │ ├── t9359.check │ │ │ ├── t9359 │ │ │ │ ├── A_1.java │ │ │ │ ├── B_2.java │ │ │ │ └── Test_2.scala │ │ │ ├── t9365.check │ │ │ ├── t9365.scala │ │ │ ├── t9375.check │ │ │ ├── t9375.scala │ │ │ ├── t9387.scala │ │ │ ├── t9387b.check │ │ │ ├── t9387b.scala │ │ │ ├── t9390.scala │ │ │ ├── t9390b.scala │ │ │ ├── t9390c.scala │ │ │ ├── t9390d.scala │ │ │ ├── t9403.flags │ │ │ ├── t9403 │ │ │ │ ├── C_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t9408.scala │ │ │ ├── t9422.scala │ │ │ ├── t9425.scala │ │ │ ├── t9437a.check │ │ │ ├── t9437a │ │ │ │ └── Test.scala │ │ │ ├── t9437b.check │ │ │ ├── t9437b │ │ │ │ ├── Foo_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── t9437c.check │ │ │ ├── t9437c │ │ │ │ └── Test.scala │ │ │ ├── t9489.flags │ │ │ ├── t9489 │ │ │ │ ├── A.java │ │ │ │ ├── B.java │ │ │ │ └── test.scala │ │ │ ├── t949.scala │ │ │ ├── t9516.scala │ │ │ ├── t9535.scala │ │ │ ├── t9546.scala │ │ │ ├── t9546b.scala │ │ │ ├── t9546c.scala │ │ │ ├── t9546d.scala │ │ │ ├── t9546e.scala │ │ │ ├── t9567.scala │ │ │ ├── t9567b.scala │ │ │ ├── t9567c.scala │ │ │ ├── t9656.check │ │ │ ├── t9656.scala │ │ │ ├── t9689.check │ │ │ ├── t9689 │ │ │ │ ├── Test_2.scala │ │ │ │ └── bug_1.scala │ │ │ ├── t9697.check │ │ │ ├── t9697.scala │ │ │ ├── t9749-repl-dot.check │ │ │ ├── t9749-repl-dot.scala │ │ │ ├── t978.scala │ │ │ ├── t9814.scala │ │ │ ├── t9841.scala │ │ │ ├── t9880-9881.check │ │ │ ├── t9880-9881.scala │ │ │ ├── t9915 │ │ │ │ ├── C_1.java │ │ │ │ └── Test_2.scala │ │ │ ├── t9920.scala │ │ │ ├── t9920b.scala │ │ │ ├── t9920c.scala │ │ │ ├── t9920d.scala │ │ │ ├── t9937 │ │ │ │ ├── Test_1.java │ │ │ │ ├── Test_2.java │ │ │ │ └── Test_3.scala │ │ │ ├── t9944.check │ │ │ ├── t9944.scala │ │ │ ├── t9946a.scala │ │ │ ├── t9946b.scala │ │ │ ├── t9946c.scala │ │ │ ├── tailcalls.check │ │ │ ├── tailcalls.scala │ │ │ ├── takeAndDrop.scala │ │ │ ├── tcpoly_monads.check │ │ │ ├── tcpoly_monads.scala │ │ │ ├── tcpoly_overriding.check │ │ │ ├── tcpoly_overriding.scala │ │ │ ├── tcpoly_parseridioms.check │ │ │ ├── tcpoly_parseridioms.scala │ │ │ ├── toolbox-varargs │ │ │ │ ├── Test.scala │ │ │ │ └── Varargs.java │ │ │ ├── toolbox_console_reporter.check │ │ │ ├── toolbox_console_reporter.scala │ │ │ ├── toolbox_current_run_compiles.check │ │ │ ├── toolbox_current_run_compiles.scala │ │ │ ├── toolbox_default_reporter_is_silent.check │ │ │ ├── toolbox_default_reporter_is_silent.scala │ │ │ ├── toolbox_expand_macro.check │ │ │ ├── toolbox_expand_macro.scala │ │ │ ├── toolbox_parse_package.check │ │ │ ├── toolbox_parse_package.scala │ │ │ ├── toolbox_silent_reporter.check │ │ │ ├── toolbox_silent_reporter.scala │ │ │ ├── toolbox_typecheck_implicitsdisabled.check │ │ │ ├── toolbox_typecheck_implicitsdisabled.scala │ │ │ ├── toolbox_typecheck_inferimplicitvalue.check │ │ │ ├── toolbox_typecheck_inferimplicitvalue.scala │ │ │ ├── toolbox_typecheck_macrosdisabled.check │ │ │ ├── toolbox_typecheck_macrosdisabled.scala │ │ │ ├── toolbox_typecheck_macrosdisabled2.check │ │ │ ├── toolbox_typecheck_macrosdisabled2.scala │ │ │ ├── tpeCache-tyconCache.check │ │ │ ├── tpeCache-tyconCache.scala │ │ │ ├── trailing-commas.check │ │ │ ├── trailing-commas.scala │ │ │ ├── trait-clonable.scala │ │ │ ├── trait-default-specialize.check │ │ │ ├── trait-default-specialize.scala │ │ │ ├── trait-defaults-modules.scala │ │ │ ├── trait-defaults-modules2 │ │ │ │ ├── T_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── trait-defaults-modules3.scala │ │ │ ├── trait-defaults-super.scala │ │ │ ├── trait-fields-override-lazy.check │ │ │ ├── trait-fields-override-lazy.scala │ │ │ ├── trait-static-clash.scala │ │ │ ├── trait-static-forwarder.check │ │ │ ├── trait-static-forwarder │ │ │ │ ├── Test.java │ │ │ │ └── forwarders.scala │ │ │ ├── trait-super-calls.scala │ │ │ ├── trait_fields_bytecode.scala │ │ │ ├── trait_fields_final.scala │ │ │ ├── trait_fields_init.check │ │ │ ├── trait_fields_init.scala │ │ │ ├── trait_fields_repl.check │ │ │ ├── trait_fields_repl.scala │ │ │ ├── trait_fields_three_layer_overrides.check │ │ │ ├── trait_fields_three_layer_overrides.scala │ │ │ ├── trait_fields_volatile.scala │ │ │ ├── transform.scala │ │ │ ├── transpose.scala │ │ │ ├── treePrint.check │ │ │ ├── treePrint.scala │ │ │ ├── triemap-hash.scala │ │ │ ├── triple-quoted-expr.check │ │ │ ├── triple-quoted-expr.scala │ │ │ ├── try-2.check │ │ │ ├── try-2.scala │ │ │ ├── try-catch-unify.check │ │ │ ├── try-catch-unify.scala │ │ │ ├── try.check │ │ │ ├── try.scala │ │ │ ├── tuple-match.check │ │ │ ├── tuple-match.scala │ │ │ ├── tuples.check │ │ │ ├── tuples.scala │ │ │ ├── type-currying.check │ │ │ ├── type-currying.scala │ │ │ ├── typealias_overriding.check │ │ │ ├── typealias_overriding.scala │ │ │ ├── typecheck.check │ │ │ ├── typecheck │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── typed-annotated.check │ │ │ ├── typed-annotated │ │ │ │ ├── Macros_1.scala │ │ │ │ └── Test_2.scala │ │ │ ├── typetags_core.check │ │ │ ├── typetags_core.scala │ │ │ ├── typetags_multi.check │ │ │ ├── typetags_multi.scala │ │ │ ├── typetags_serialize.check │ │ │ ├── typetags_serialize.scala │ │ │ ├── typetags_symbolof_x.check │ │ │ ├── typetags_symbolof_x.scala │ │ │ ├── typetags_without_scala_reflect_manifest_lookup.scala │ │ │ ├── typetags_without_scala_reflect_typetag_lookup.check │ │ │ ├── typetags_without_scala_reflect_typetag_lookup.scala │ │ │ ├── typetags_without_scala_reflect_typetag_manifest_interop.check │ │ │ ├── typetags_without_scala_reflect_typetag_manifest_interop.scala │ │ │ ├── unapply.check │ │ │ ├── unapply.scala │ │ │ ├── unapplyArray.scala │ │ │ ├── unboxingBug.check │ │ │ ├── unboxingBug.scala │ │ │ ├── unittest_collection.check │ │ │ ├── unittest_collection.scala │ │ │ ├── unittest_iterator.scala │ │ │ ├── unreachable.scala │ │ │ ├── value-class-extractor-2.check │ │ │ ├── value-class-extractor-2.scala │ │ │ ├── value-class-extractor-seq.check │ │ │ ├── value-class-extractor-seq.scala │ │ │ ├── value-class-extractor.check │ │ │ ├── value-class-extractor.scala │ │ │ ├── value-class-partial-func-depmet.scala │ │ │ ├── valueClassSelfType.scala │ │ │ ├── valueclasses-classmanifest-basic.check │ │ │ ├── valueclasses-classmanifest-basic.scala │ │ │ ├── valueclasses-classmanifest-existential.check │ │ │ ├── valueclasses-classmanifest-existential.scala │ │ │ ├── valueclasses-classmanifest-generic.check │ │ │ ├── valueclasses-classmanifest-generic.scala │ │ │ ├── valueclasses-classtag-basic.check │ │ │ ├── valueclasses-classtag-basic.scala │ │ │ ├── valueclasses-classtag-existential.check │ │ │ ├── valueclasses-classtag-existential.scala │ │ │ ├── valueclasses-classtag-generic.check │ │ │ ├── valueclasses-classtag-generic.scala │ │ │ ├── valueclasses-constr.check │ │ │ ├── valueclasses-constr.scala │ │ │ ├── valueclasses-manifest-basic.check │ │ │ ├── valueclasses-manifest-basic.scala │ │ │ ├── valueclasses-manifest-existential.check │ │ │ ├── valueclasses-manifest-existential.scala │ │ │ ├── valueclasses-manifest-generic.check │ │ │ ├── valueclasses-manifest-generic.scala │ │ │ ├── valueclasses-pavlov.check │ │ │ ├── valueclasses-pavlov.scala │ │ │ ├── valueclasses-typetag-basic.check │ │ │ ├── valueclasses-typetag-basic.scala │ │ │ ├── valueclasses-typetag-existential.check │ │ │ ├── valueclasses-typetag-existential.scala │ │ │ ├── valueclasses-typetag-generic.check │ │ │ ├── valueclasses-typetag-generic.scala │ │ │ ├── var-arity-class-symbol.scala │ │ │ ├── various-flat-classpath-types.check │ │ │ ├── various-flat-classpath-types.scala │ │ │ ├── vector1.check │ │ │ ├── vector1.scala │ │ │ ├── verify-ctor.check │ │ │ ├── verify-ctor.scala │ │ │ ├── view-headoption.check │ │ │ ├── view-headoption.scala │ │ │ ├── view-iterator-stream.check │ │ │ ├── view-iterator-stream.scala │ │ │ ├── viewtest.check │ │ │ ├── viewtest.scala │ │ │ ├── virtpatmat_alts.check │ │ │ ├── virtpatmat_alts.scala │ │ │ ├── virtpatmat_apply.check │ │ │ ├── virtpatmat_apply.flags │ │ │ ├── virtpatmat_apply.scala │ │ │ ├── virtpatmat_casting.check │ │ │ ├── virtpatmat_casting.flags │ │ │ ├── virtpatmat_casting.scala │ │ │ ├── virtpatmat_extends_product.check │ │ │ ├── virtpatmat_extends_product.flags │ │ │ ├── virtpatmat_extends_product.scala │ │ │ ├── virtpatmat_literal.check │ │ │ ├── virtpatmat_literal.flags │ │ │ ├── virtpatmat_literal.scala │ │ │ ├── virtpatmat_nested_lists.check │ │ │ ├── virtpatmat_nested_lists.flags │ │ │ ├── virtpatmat_nested_lists.scala │ │ │ ├── virtpatmat_npe.check │ │ │ ├── virtpatmat_npe.flags │ │ │ ├── virtpatmat_npe.scala │ │ │ ├── virtpatmat_opt_sharing.check │ │ │ ├── virtpatmat_opt_sharing.flags │ │ │ ├── virtpatmat_opt_sharing.scala │ │ │ ├── virtpatmat_partial.check │ │ │ ├── virtpatmat_partial.flags │ │ │ ├── virtpatmat_partial.scala │ │ │ ├── virtpatmat_partial_backquoted.check │ │ │ ├── virtpatmat_partial_backquoted.scala │ │ │ ├── virtpatmat_staging.check │ │ │ ├── virtpatmat_staging.flags │ │ │ ├── virtpatmat_staging.scala │ │ │ ├── virtpatmat_stringinterp.check │ │ │ ├── virtpatmat_stringinterp.flags │ │ │ ├── virtpatmat_stringinterp.scala │ │ │ ├── virtpatmat_switch.check │ │ │ ├── virtpatmat_switch.flags │ │ │ ├── virtpatmat_switch.scala │ │ │ ├── virtpatmat_tailcalls_verifyerror.check │ │ │ ├── virtpatmat_tailcalls_verifyerror.flags │ │ │ ├── virtpatmat_tailcalls_verifyerror.scala │ │ │ ├── virtpatmat_try.check │ │ │ ├── virtpatmat_try.flags │ │ │ ├── virtpatmat_try.scala │ │ │ ├── virtpatmat_typed.check │ │ │ ├── virtpatmat_typed.flags │ │ │ ├── virtpatmat_typed.scala │ │ │ ├── virtpatmat_typetag.check │ │ │ ├── virtpatmat_typetag.flags │ │ │ ├── virtpatmat_typetag.scala │ │ │ ├── virtpatmat_unapply.check │ │ │ ├── virtpatmat_unapply.flags │ │ │ ├── virtpatmat_unapply.scala │ │ │ ├── virtpatmat_unapplyprod.check │ │ │ ├── virtpatmat_unapplyprod.flags │ │ │ ├── virtpatmat_unapplyprod.scala │ │ │ ├── virtpatmat_unapplyseq.check │ │ │ ├── virtpatmat_unapplyseq.flags │ │ │ ├── virtpatmat_unapplyseq.scala │ │ │ ├── virtpatmat_valdef.check │ │ │ ├── virtpatmat_valdef.scala │ │ │ ├── wacky-value-classes.flags │ │ │ ├── wacky-value-classes.scala │ │ │ ├── weakconform.scala │ │ │ ├── withIndex.check │ │ │ ├── withIndex.scala │ │ │ ├── xMigration.check │ │ │ └── xMigration.scala │ │ ├── scalap │ │ │ ├── abstractClass.check │ │ │ ├── abstractClass.scala │ │ │ ├── abstractMethod.check │ │ │ ├── abstractMethod.scala │ │ │ ├── caseClass.check │ │ │ ├── caseClass.scala │ │ │ ├── caseObject.check │ │ │ ├── caseObject.scala │ │ │ ├── cbnParam.check │ │ │ ├── cbnParam.scala │ │ │ ├── classPrivate.check │ │ │ ├── classPrivate.scala │ │ │ ├── classWithExistential.check │ │ │ ├── classWithExistential.scala │ │ │ ├── classWithSelfAnnotation.check │ │ │ ├── classWithSelfAnnotation.scala │ │ │ ├── covariantParam.check │ │ │ ├── covariantParam.scala │ │ │ ├── defaultParameter.check │ │ │ ├── defaultParameter.scala │ │ │ ├── implicitParam.check │ │ │ ├── implicitParam.scala │ │ │ ├── packageObject.check │ │ │ ├── packageObject.scala │ │ │ ├── paramClauses.check │ │ │ ├── paramClauses.scala │ │ │ ├── paramNames.check │ │ │ ├── paramNames.scala │ │ │ ├── sequenceParam.check │ │ │ ├── sequenceParam.scala │ │ │ ├── simpleClass.check │ │ │ ├── simpleClass.scala │ │ │ ├── t8679.check │ │ │ ├── t8679.scala │ │ │ ├── traitObject.check │ │ │ ├── traitObject.scala │ │ │ ├── typeAnnotations.check │ │ │ ├── typeAnnotations.scala │ │ │ ├── valAndVar.check │ │ │ ├── valAndVar.scala │ │ │ ├── wildcardType.check │ │ │ └── wildcardType.scala │ │ ├── specialized │ │ │ ├── arrays-traits.check │ │ │ ├── arrays-traits.scala │ │ │ ├── arrays.check │ │ │ ├── arrays.scala │ │ │ ├── constant_lambda.check │ │ │ ├── constant_lambda.scala │ │ │ ├── fft.check │ │ │ ├── fft.scala │ │ │ ├── input2.txt │ │ │ ├── spec-absfun.check │ │ │ ├── spec-absfun.scala │ │ │ ├── spec-ame.check │ │ │ ├── spec-ame.scala │ │ │ ├── spec-constr.check │ │ │ ├── spec-constr.scala │ │ │ ├── spec-early.check │ │ │ ├── spec-early.scala │ │ │ ├── spec-hlists.check │ │ │ ├── spec-hlists.scala │ │ │ ├── spec-init.check │ │ │ ├── spec-init.scala │ │ │ ├── spec-matrix-new.check │ │ │ ├── spec-matrix-new.scala │ │ │ ├── spec-matrix-old.check │ │ │ ├── spec-matrix-old.scala │ │ │ ├── spec-overrides.check │ │ │ ├── spec-overrides.scala │ │ │ ├── spec-patmatch.check │ │ │ ├── spec-patmatch.flags │ │ │ ├── spec-patmatch.scala │ │ │ ├── spec-super.check │ │ │ ├── spec-super.scala │ │ │ ├── spec-t3896.check │ │ │ ├── spec-t3896.scala │ │ │ ├── t6035.check │ │ │ ├── t6035 │ │ │ │ ├── first_1.scala │ │ │ │ └── second_2.scala │ │ │ ├── t7343.scala │ │ │ ├── t7344.scala │ │ │ ├── tb3651.check │ │ │ ├── tb3651.scala │ │ │ ├── tc3651.check │ │ │ ├── tc3651.scala │ │ │ ├── td3651.check │ │ │ ├── td3651.scala │ │ │ └── test.scala │ │ └── speclib │ │ │ └── instrumented.jar.desired.sha1 │ ├── instrumented │ │ ├── boxes.patch │ │ ├── library │ │ │ └── scala │ │ │ │ └── runtime │ │ │ │ ├── BoxesRunTime.java │ │ │ │ └── ScalaRunTime.scala │ │ ├── mkinstrumented.sh │ │ └── srt.patch │ ├── junit │ │ └── scala │ │ │ ├── CharSequenceImplicitsTests.scala │ │ │ ├── CollectTest.scala │ │ │ ├── MatchErrorSerializationTest.scala │ │ │ ├── PartialFunctionSerializationTest.scala │ │ │ ├── SerializationStabilityTest.scala │ │ │ ├── collection │ │ │ ├── CollectionConversionsTest.scala │ │ │ ├── IndexedSeqOptimizedTest.scala │ │ │ ├── IndexedSeqTest.scala │ │ │ ├── IterableViewLikeTest.scala │ │ │ ├── IteratorTest.scala │ │ │ ├── LinearSeqOptimizedTest.scala │ │ │ ├── NewBuilderTest.scala │ │ │ ├── ReusableBuildersTest.scala │ │ │ ├── SearchingTest.scala │ │ │ ├── SeqLikeTest.scala │ │ │ ├── SeqViewTest.scala │ │ │ ├── SetMapConsistencyTest.scala │ │ │ ├── TraversableLikeTest.scala │ │ │ ├── TraversableOnceTest.scala │ │ │ ├── concurrent │ │ │ │ └── TrieMapTest.scala │ │ │ ├── convert │ │ │ │ ├── MapWrapperTest.scala │ │ │ │ ├── NullSafetyToJavaTest.scala │ │ │ │ ├── NullSafetyToScalaTest.scala │ │ │ │ └── WrapperSerializationTest.scala │ │ │ ├── immutable │ │ │ │ ├── HashMapTest.scala │ │ │ │ ├── ListMapTest.scala │ │ │ │ ├── ListSetTest.scala │ │ │ │ ├── ListTest.scala │ │ │ │ ├── PagedSeqTest.scala │ │ │ │ ├── QueueTest.scala │ │ │ │ ├── RangeConsistencyTest.scala │ │ │ │ ├── RangeTest.scala │ │ │ │ ├── SetTest.scala │ │ │ │ ├── StreamTest.scala │ │ │ │ ├── StringLikeTest.scala │ │ │ │ ├── TreeMapTest.scala │ │ │ │ ├── TreeSetTest.scala │ │ │ │ └── VectorTest.scala │ │ │ └── mutable │ │ │ │ ├── AnyRefMapTest.scala │ │ │ │ ├── ArrayBufferTest.scala │ │ │ │ ├── ArraySortingTest.scala │ │ │ │ ├── BitSetTest.scala │ │ │ │ ├── HashMapTest.scala │ │ │ │ ├── HashSetTest.scala │ │ │ │ ├── LinkedHashMapTest.scala │ │ │ │ ├── LinkedHashSetTest.scala │ │ │ │ ├── MutableListTest.scala │ │ │ │ ├── OpenHashMapTest.scala │ │ │ │ ├── PriorityQueueTest.scala │ │ │ │ ├── SetLikeTest.scala │ │ │ │ ├── TreeMapTest.scala │ │ │ │ ├── TreeSetTest.scala │ │ │ │ ├── UnrolledBufferTest.scala │ │ │ │ └── VectorTest.scala │ │ │ ├── concurrent │ │ │ ├── duration │ │ │ │ └── SerializationTest.scala │ │ │ └── impl │ │ │ │ └── DefaultPromiseTest.scala │ │ │ ├── io │ │ │ └── SourceTest.scala │ │ │ ├── lang │ │ │ ├── annotations │ │ │ │ ├── BytecodeTest.scala │ │ │ │ └── RunTest.scala │ │ │ ├── primitives │ │ │ │ ├── BoxUnboxTest.scala │ │ │ │ ├── NaNTest.scala │ │ │ │ └── PredefAutoboxingTest.scala │ │ │ ├── stringinterpol │ │ │ │ └── StringContextTest.scala │ │ │ └── traits │ │ │ │ ├── BytecodeTest.scala │ │ │ │ └── RunTest.scala │ │ │ ├── math │ │ │ ├── BigDecimalTest.scala │ │ │ ├── BigIntTest.scala │ │ │ ├── NumericTest.scala │ │ │ └── OrderingTest.scala │ │ │ ├── reflect │ │ │ ├── ClassOfTest.scala │ │ │ ├── ClassTagTest.scala │ │ │ ├── QTest.scala │ │ │ ├── internal │ │ │ │ ├── MirrorsTest.scala │ │ │ │ ├── NamesTest.scala │ │ │ │ ├── PrintersTest.scala │ │ │ │ ├── ScopeTest.scala │ │ │ │ ├── TreeGenTest.scala │ │ │ │ ├── TypesTest.scala │ │ │ │ └── util │ │ │ │ │ ├── AbstractFileClassLoaderTest.scala │ │ │ │ │ ├── SourceFileTest.scala │ │ │ │ │ ├── StringOpsTest.scala │ │ │ │ │ └── WeakHashSetTest.scala │ │ │ └── io │ │ │ │ └── ZipArchiveTest.scala │ │ │ ├── runtime │ │ │ ├── LambdaDeserializerTest.java │ │ │ ├── ScalaRunTimeTest.scala │ │ │ └── ZippedTest.scala │ │ │ ├── sys │ │ │ └── process │ │ │ │ ├── PipedProcessTest.scala │ │ │ │ └── ProcessTest.scala │ │ │ ├── tools │ │ │ ├── nsc │ │ │ │ ├── SampleTest.scala │ │ │ │ ├── ScriptRunnerTest.scala │ │ │ │ ├── backend │ │ │ │ │ └── jvm │ │ │ │ │ │ ├── BTypesTest.scala │ │ │ │ │ │ ├── BytecodeTest.scala │ │ │ │ │ │ ├── DefaultMethodTest.scala │ │ │ │ │ │ ├── DirectCompileTest.scala │ │ │ │ │ │ ├── GenericSignaturesTest.scala │ │ │ │ │ │ ├── IndyLambdaTest.scala │ │ │ │ │ │ ├── IndySammyTest.scala │ │ │ │ │ │ ├── InnerClassAttributeTest.scala │ │ │ │ │ │ ├── NestedClassesCollectorTest.scala │ │ │ │ │ │ ├── OptimizedBytecodeTest.scala │ │ │ │ │ │ ├── StringConcatTest.scala │ │ │ │ │ │ ├── analysis │ │ │ │ │ │ ├── NullnessAnalyzerTest.scala │ │ │ │ │ │ └── ProdConsAnalyzerTest.scala │ │ │ │ │ │ └── opt │ │ │ │ │ │ ├── AnalyzerTest.scala │ │ │ │ │ │ ├── BTypesFromClassfileTest.scala │ │ │ │ │ │ ├── BoxUnboxTest.scala │ │ │ │ │ │ ├── CallGraphTest.scala │ │ │ │ │ │ ├── ClosureOptimizerTest.scala │ │ │ │ │ │ ├── CompactLocalVariablesTest.scala │ │ │ │ │ │ ├── EmptyExceptionHandlersTest.scala │ │ │ │ │ │ ├── EmptyLabelsAndLineNumbersTest.scala │ │ │ │ │ │ ├── InlineInfoTest.scala │ │ │ │ │ │ ├── InlineSourceMatcherTest.scala │ │ │ │ │ │ ├── InlineWarningTest.scala │ │ │ │ │ │ ├── InlinerIllegalAccessTest.scala │ │ │ │ │ │ ├── InlinerSeparateCompilationTest.scala │ │ │ │ │ │ ├── InlinerTest.scala │ │ │ │ │ │ ├── MethodLevelOptsTest.scala │ │ │ │ │ │ ├── ScalaInlineInfoTest.scala │ │ │ │ │ │ ├── SimplifyJumpsTest.scala │ │ │ │ │ │ ├── UnreachableCodeTest.scala │ │ │ │ │ │ └── UnusedLocalVariablesTest.scala │ │ │ │ ├── classpath │ │ │ │ │ ├── AggregateClassPathTest.scala │ │ │ │ │ ├── JrtClassPathTest.scala │ │ │ │ │ ├── PathResolverBaseTest.scala │ │ │ │ │ ├── VirtualDirectoryClassPathTest.scala │ │ │ │ │ └── ZipAndJarFileLookupFactoryTest.scala │ │ │ │ ├── doc │ │ │ │ │ └── html │ │ │ │ │ │ └── HtmlDocletTest.scala │ │ │ │ ├── interpreter │ │ │ │ │ ├── CompletionTest.scala │ │ │ │ │ ├── ScriptedTest.scala │ │ │ │ │ └── TabulatorTest.scala │ │ │ │ ├── reporters │ │ │ │ │ └── ConsoleReporterTest.scala │ │ │ │ ├── settings │ │ │ │ │ ├── ScalaVersionTest.scala │ │ │ │ │ └── SettingsTest.scala │ │ │ │ ├── symtab │ │ │ │ │ ├── CannotHaveAttrsTest.scala │ │ │ │ │ ├── FlagsTest.scala │ │ │ │ │ ├── FreshNameExtractorTest.scala │ │ │ │ │ ├── StdNamesTest.scala │ │ │ │ │ ├── SymbolTableForUnitTesting.scala │ │ │ │ │ └── SymbolTableTest.scala │ │ │ │ ├── transform │ │ │ │ │ ├── delambdafy │ │ │ │ │ │ └── DelambdafyTest.scala │ │ │ │ │ └── patmat │ │ │ │ │ │ ├── PatmatBytecodeTest.scala │ │ │ │ │ │ └── SolvingTest.scala │ │ │ │ ├── typechecker │ │ │ │ │ └── Implicits.scala │ │ │ │ └── util │ │ │ │ │ └── StackTraceTest.scala │ │ │ └── testing │ │ │ │ ├── AssertThrowsTest.scala │ │ │ │ ├── AssertUtil.scala │ │ │ │ ├── AssertUtilTest.scala │ │ │ │ ├── BytecodeTesting.scala │ │ │ │ ├── ClearAfterClass.java │ │ │ │ ├── RunTesting.scala │ │ │ │ └── TempDir.scala │ │ │ └── util │ │ │ ├── RandomTest.scala │ │ │ ├── RandomUtilTest.scala │ │ │ ├── SortingTest.scala │ │ │ ├── SpecVersionTest.scala │ │ │ ├── SystemPropertiesTest.scala │ │ │ ├── TryTest.scala │ │ │ ├── control │ │ │ └── ExceptionTest.scala │ │ │ └── matching │ │ │ ├── CharRegexTest.scala │ │ │ └── RegexTest.scala │ ├── osgi │ │ └── src │ │ │ ├── BasicLibrary.scala │ │ │ ├── BasicReflection.scala │ │ │ ├── BasicTest.scala │ │ │ ├── ReflectionToolboxTest.scala │ │ │ ├── ScalaOsgiHelper.scala │ │ │ └── logback.xml │ ├── scalacheck │ │ ├── CheckCollections.scala │ │ ├── CheckEither.scala │ │ ├── Ctrie.scala │ │ ├── MutablePriorityQueue.scala │ │ ├── ReflectionExtractors.scala │ │ ├── Unrolled.scala │ │ ├── array-new.scala │ │ ├── array-old.scala │ │ ├── concurrent-map.scala │ │ ├── duration.scala │ │ ├── list.scala │ │ ├── nan-ordering.scala │ │ ├── primitive-eqeq.scala │ │ ├── range.scala │ │ ├── redblacktree.scala │ │ ├── scala │ │ │ ├── collection │ │ │ │ └── mutable │ │ │ │ │ ├── MutableTreeMap.scala │ │ │ │ │ └── MutableTreeSet.scala │ │ │ ├── reflect │ │ │ │ └── quasiquotes │ │ │ │ │ ├── ArbitraryTreesAndNames.scala │ │ │ │ │ ├── DefinitionConstructionProps.scala │ │ │ │ │ ├── DefinitionDeconstructionProps.scala │ │ │ │ │ ├── DeprecationProps.scala │ │ │ │ │ ├── ErrorProps.scala │ │ │ │ │ ├── ForProps.scala │ │ │ │ │ ├── LiftableProps.scala │ │ │ │ │ ├── PatternConstructionProps.scala │ │ │ │ │ ├── PatternDeconstructionProps.scala │ │ │ │ │ ├── QuasiquoteProperties.scala │ │ │ │ │ ├── RuntimeErrorProps.scala │ │ │ │ │ ├── TermConstructionProps.scala │ │ │ │ │ ├── TermDeconstructionProps.scala │ │ │ │ │ ├── TypeConstructionProps.scala │ │ │ │ │ ├── TypeDeconstructionProps.scala │ │ │ │ │ ├── TypecheckedProps.scala │ │ │ │ │ └── UnliftableProps.scala │ │ │ └── tools │ │ │ │ └── nsc │ │ │ │ └── scaladoc │ │ │ │ ├── CommentFactoryTest.scala │ │ │ │ ├── HtmlFactoryTest.scala │ │ │ │ ├── IndexScriptTest.scala │ │ │ │ └── SettingsUtil.scala │ │ ├── scan.scala │ │ ├── substringTests.scala │ │ ├── t2460.scala │ │ ├── t4147.scala │ │ ├── treemap.scala │ │ └── treeset.scala │ ├── scaladoc │ │ ├── .gitignore │ │ ├── filters │ │ ├── javascript │ │ │ ├── package.html │ │ │ ├── test-index.html │ │ │ └── test-index.js │ │ ├── resources │ │ │ ├── Trac3790.scala │ │ │ ├── Trac4180.scala │ │ │ ├── Trac4289.scala │ │ │ ├── Trac4306.scala │ │ │ ├── Trac4325.scala │ │ │ ├── Trac4358.scala │ │ │ ├── Trac4366.scala │ │ │ ├── Trac4372.scala │ │ │ ├── Trac4374.scala │ │ │ ├── Trac4409.scala │ │ │ ├── Trac4420.scala │ │ │ ├── Trac4452.scala │ │ │ ├── Trac4471.scala │ │ │ ├── Trac484.scala │ │ │ ├── basic.scala │ │ │ ├── code-indent.scala │ │ │ ├── doc-root │ │ │ │ ├── Any.scala │ │ │ │ ├── AnyRef.scala │ │ │ │ ├── Nothing.scala │ │ │ │ └── Null.scala │ │ │ ├── explicit-inheritance-override.scala │ │ │ ├── explicit-inheritance-usecase.scala │ │ │ ├── implicit-inheritance-override.scala │ │ │ ├── implicit-inheritance-usecase.scala │ │ │ ├── implicits-ambiguating-res.scala │ │ │ ├── implicits-base-res.scala │ │ │ ├── implicits-chaining-res.scala │ │ │ ├── implicits-elimination-res.scala │ │ │ ├── implicits-known-type-classes-res.scala │ │ │ ├── implicits-scopes-res.scala │ │ │ ├── implicits-shadowing-res.scala │ │ │ ├── inheritdoc-corner-cases.scala │ │ │ ├── links.scala │ │ │ ├── negative-defaults.scala │ │ │ ├── package-object-res.scala │ │ │ ├── t10027.java │ │ │ ├── t3314-diagrams.scala │ │ │ ├── t3314.scala │ │ │ ├── t4014_0.scala │ │ │ ├── t4014_1.scala │ │ │ ├── t4014_2.scala │ │ │ ├── t4287.scala │ │ │ ├── t4360.scala │ │ │ ├── t4421.scala │ │ │ ├── t4476.scala │ │ │ ├── t4507.scala │ │ │ ├── t4589.scala │ │ │ ├── t4641.scala │ │ │ ├── t4715.scala │ │ │ ├── t4826.java │ │ │ ├── t4898.scala │ │ │ ├── t5054_q1.scala │ │ │ ├── t5054_q2.scala │ │ │ ├── t5054_q3.scala │ │ │ ├── t5054_q4.scala │ │ │ ├── t5054_q5.scala │ │ │ ├── t5054_q6.scala │ │ │ ├── t5054_q7.scala │ │ │ ├── t5287.scala │ │ │ ├── t5558.scala │ │ │ ├── t5784.scala │ │ │ ├── t6509.scala │ │ │ ├── t6511.scala │ │ │ ├── t8144.scala │ │ │ ├── t8514.scala │ │ │ └── t9599.scala │ │ └── run │ │ │ ├── diagrams-base.check │ │ │ ├── diagrams-base.scala │ │ │ ├── diagrams-determinism.check │ │ │ ├── diagrams-determinism.scala │ │ │ ├── diagrams-filtering.check │ │ │ ├── diagrams-filtering.scala │ │ │ ├── diagrams-inherited-nodes.check │ │ │ ├── diagrams-inherited-nodes.scala │ │ │ ├── groups.check │ │ │ ├── groups.scala │ │ │ ├── implicits-ambiguating.check │ │ │ ├── implicits-ambiguating.scala │ │ │ ├── implicits-base.check │ │ │ ├── implicits-base.scala │ │ │ ├── implicits-chaining.check │ │ │ ├── implicits-chaining.scala │ │ │ ├── implicits-known-type-classes.check │ │ │ ├── implicits-known-type-classes.scala │ │ │ ├── implicits-scopes.check │ │ │ ├── implicits-scopes.scala │ │ │ ├── implicits-shadowing.check │ │ │ ├── implicits-shadowing.scala │ │ │ ├── implicits-var-exp.check │ │ │ ├── implicits-var-exp.scala │ │ │ ├── inlineToStr-strips-unwanted-text.check │ │ │ ├── inlineToStr-strips-unwanted-text.scala │ │ │ ├── inlineToStrForTitleTag.check │ │ │ ├── inlineToStrForTitleTag.scala │ │ │ ├── links.check │ │ │ ├── links.scala │ │ │ ├── package-object.check │ │ │ ├── package-object.scala │ │ │ ├── shortDescription-annotation.check │ │ │ ├── shortDescription-annotation.scala │ │ │ ├── t10027.check │ │ │ ├── t10027.scala │ │ │ ├── t10391.check │ │ │ ├── t10391.scala │ │ │ ├── t191.check │ │ │ ├── t191.scala │ │ │ ├── t3314-diagrams.check │ │ │ ├── t3314-diagrams.scala │ │ │ ├── t3314.check │ │ │ ├── t3314.scala │ │ │ ├── t3448.check │ │ │ ├── t3448.scala │ │ │ ├── t3484.check │ │ │ ├── t3484.scala │ │ │ ├── t4324.check │ │ │ ├── t4324.scala │ │ │ ├── t4360.check │ │ │ ├── t4360.scala │ │ │ ├── t4676.check │ │ │ ├── t4676.scala │ │ │ ├── t4826-no-comments.check │ │ │ ├── t4826-no-comments.scala │ │ │ ├── t4826.check │ │ │ ├── t4826.scala │ │ │ ├── t4887.check │ │ │ ├── t4887.scala │ │ │ ├── t4922.check │ │ │ ├── t4922.scala │ │ │ ├── t5235.check │ │ │ ├── t5235.scala │ │ │ ├── t5373.check │ │ │ ├── t5373.scala │ │ │ ├── t5527.check │ │ │ ├── t5527.scala │ │ │ ├── t5533.check │ │ │ ├── t5533.scala │ │ │ ├── t5730.check │ │ │ ├── t5730.scala │ │ │ ├── t5780.check │ │ │ ├── t5780.scala │ │ │ ├── t5784.check │ │ │ ├── t5784.scala │ │ │ ├── t5795.check │ │ │ ├── t5795.scala │ │ │ ├── t5933.check │ │ │ ├── t5933.scala │ │ │ ├── t5965.check │ │ │ ├── t5965.scala │ │ │ ├── t6140.check │ │ │ ├── t6140.scala │ │ │ ├── t6509.check │ │ │ ├── t6509.scala │ │ │ ├── t6511.check │ │ │ ├── t6511.scala │ │ │ ├── t6580.check │ │ │ ├── t6580.scala │ │ │ ├── t6626.check │ │ │ ├── t6626.scala │ │ │ ├── t6715.check │ │ │ ├── t6715.scala │ │ │ ├── t6812.check │ │ │ ├── t6812.scala │ │ │ ├── t6812b.check │ │ │ ├── t6812b.scala │ │ │ ├── t7124.check │ │ │ ├── t7124.scala │ │ │ ├── t7367.check │ │ │ ├── t7367.scala │ │ │ ├── t7767.check │ │ │ ├── t7767.scala │ │ │ ├── t7876.check │ │ │ ├── t7876.scala │ │ │ ├── t7876b.check │ │ │ ├── t7876b.scala │ │ │ ├── t7905.check │ │ │ ├── t7905.scala │ │ │ ├── t8113.check │ │ │ ├── t8113.scala │ │ │ ├── t8210.check │ │ │ ├── t8210.scala │ │ │ ├── t8314.check │ │ │ ├── t8314.scala │ │ │ ├── t8407.check │ │ │ ├── t8407.scala │ │ │ ├── t8479.check │ │ │ ├── t8479.scala │ │ │ ├── t8557.check │ │ │ ├── t8557.scala │ │ │ ├── t8672.check │ │ │ ├── t8672.scala │ │ │ ├── t9585.check │ │ │ ├── t9585.scala │ │ │ ├── t9620.check │ │ │ ├── t9620.scala │ │ │ ├── t9704.check │ │ │ ├── t9704.scala │ │ │ ├── t9752.check │ │ │ ├── t9752.scala │ │ │ ├── tag-requirements.check │ │ │ ├── tag-requirements.scala │ │ │ ├── usecase-var-expansion.check │ │ │ └── usecase-var-expansion.scala │ └── script-tests │ │ ├── README │ │ └── jar-manifest │ │ ├── resources │ │ └── MANIFEST.MF │ │ ├── run-test │ │ ├── run-test.check │ │ └── src │ │ └── jar-test.scala ├── tools │ ├── abspath │ ├── class-dump │ ├── cleanup-commit │ ├── compare-java-sigs │ ├── cpof │ ├── jar-dump │ ├── pathResolver │ ├── rm-orphan-checkfiles │ ├── scaladoc-compare │ ├── scaladoc-diff │ └── verify-jar-cache └── versions.properties └── scalap ├── decoder.properties └── scala └── tools └── scalap ├── Arguments.scala ├── ByteArrayReader.scala ├── Classfile.scala ├── Classfiles.scala ├── CodeWriter.scala ├── Decode.scala ├── JavaWriter.scala ├── Main.scala ├── MetaParser.scala ├── Properties.scala └── scalax ├── rules ├── Memoisable.scala ├── Result.scala ├── Rule.scala ├── Rules.scala ├── SeqRule.scala └── scalasig │ ├── ClassFileParser.scala │ ├── Flags.scala │ ├── ScalaSig.scala │ ├── ScalaSigPrinter.scala │ ├── SourceFileAttributeParser.scala │ ├── Symbol.scala │ └── Type.scala └── util └── StringUtil.scala /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .DS_Store 3 | .idea/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: scala 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkossakowski/kentuckymule/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkossakowski/kentuckymule/HEAD/README.md -------------------------------------------------------------------------------- /kentuckyMule.jar: -------------------------------------------------------------------------------- 1 | kentuckymule/target/scala-2.12/kentuckymule-assembly-0.1-SNAPSHOT.jar -------------------------------------------------------------------------------- /notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkossakowski/kentuckymule/HEAD/notes.md -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.1.0 2 | -------------------------------------------------------------------------------- /sample-projects/scala/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.16 2 | -------------------------------------------------------------------------------- /sample-projects/scala/src/compiler/rootdoc.txt: -------------------------------------------------------------------------------- 1 | The Scala compiler and reflection APIs. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/src/eclipse/.gitignore: -------------------------------------------------------------------------------- 1 | **/.cache-* 2 | **/.settings/ 3 | -------------------------------------------------------------------------------- /sample-projects/scala/src/repl/scala/tools/nsc/interpreter/ISettings.scala: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/ant/test-basic/src/test-1.scala: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/benchmarks/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.16 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.obj/ 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/instrumented/t6611.check: -------------------------------------------------------------------------------- 1 | Method call statistics: 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/annotations.flags: -------------------------------------------------------------------------------- 1 | -deprecation -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/bytecode-test-example.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/bytecode-test-example.flags: -------------------------------------------------------------------------------- 1 | -opt:l:none 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/matchbox.flags: -------------------------------------------------------------------------------- 1 | -opt:l:method -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/methvsfield.check: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/natives.check: -------------------------------------------------------------------------------- 1 | Invocation returned "Scala is great!" 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/outerEnum.check: -------------------------------------------------------------------------------- 1 | Bar 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/t0014.check: -------------------------------------------------------------------------------- 1 | test.NestedAnnotations 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/t1143-2.check: -------------------------------------------------------------------------------- 1 | pass 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/t1342.check: -------------------------------------------------------------------------------- 1 | one 2 | two 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/t1464.check: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/t2470.check: -------------------------------------------------------------------------------- 1 | List(@Action(block=ACTION)) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/t2511.check: -------------------------------------------------------------------------------- 1 | null 2 | bippy 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/t2570/Test3.java: -------------------------------------------------------------------------------- 1 | public class Test3 { 2 | } -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/t2827.check: -------------------------------------------------------------------------------- 1 | Larry 2 | Curly 3 | Moe 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/t676.check: -------------------------------------------------------------------------------- 1 | RUNTIME 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/t7253.check: -------------------------------------------------------------------------------- 1 | bytecode identical 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/t8582.flags: -------------------------------------------------------------------------------- 1 | -deprecation 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/t8689.check: -------------------------------------------------------------------------------- 1 | success 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/unreachable.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/unreachable/Foo_1.flags: -------------------------------------------------------------------------------- 1 | -opt:l:default -------------------------------------------------------------------------------- /sample-projects/scala/test/files/jvm/varargs.check: -------------------------------------------------------------------------------- 1 | 7 2 | 10 3 | 19 4 | a 5 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/abstract-explaintypes.flags: -------------------------------------------------------------------------------- 1 | -explaintypes 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/aladdin1055.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/applydynamic_sip.flags: -------------------------------------------------------------------------------- 1 | -language:dynamics 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/bad-advice.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/badtok-2.scala: -------------------------------------------------------------------------------- 1 | //bug 990 2 | object Test { 3 | `x 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/badtok-3.scala: -------------------------------------------------------------------------------- 1 | object Test { 2 | {} 2 | 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t10296-warn.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -Xlint:unused 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t1215.scala: -------------------------------------------------------------------------------- 1 | object Test { 2 | val x = 1 += 1 3 | } 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t1224.flags: -------------------------------------------------------------------------------- 1 | -Ybreak-cycles 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t1371.scala: -------------------------------------------------------------------------------- 1 | trait A[T <: (_)] 2 | 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t1503.flags: -------------------------------------------------------------------------------- 1 | -Xlint -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t1909-object.flags: -------------------------------------------------------------------------------- 1 | -Xdev -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t2275b.scala: -------------------------------------------------------------------------------- 1 | object Test { 2 | {
}xx 3 | } 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t2442.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t2462b.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t2462c.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t2712-2.flags: -------------------------------------------------------------------------------- 1 | -Ypartial-unification 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t2796.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t284.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t3098.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t3683a.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t3692-new.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t4091.scala: -------------------------------------------------------------------------------- 1 | private a 2 | class b 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t4302.flags: -------------------------------------------------------------------------------- 1 | -unchecked -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t4440.flags: -------------------------------------------------------------------------------- 1 | -unchecked -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t4584.scala: -------------------------------------------------------------------------------- 1 | class A { val \u2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t4691_exhaust_extractor.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t4749.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t4762.flags: -------------------------------------------------------------------------------- 1 | -Xlint -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t5031b/a.scala: -------------------------------------------------------------------------------- 1 | package foo 2 | 3 | class Bippy 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t5031b/b.scala: -------------------------------------------------------------------------------- 1 | package foo 2 | 3 | object Bippy 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t5063.scala: -------------------------------------------------------------------------------- 1 | class A { 2 | super.+("") 3 | } 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t5182.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t5352.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t5426.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t5440.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t5639b.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.11 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t565.scala: -------------------------------------------------------------------------------- 1 | object test { 2 | var s0: String 3 | } 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t5663-badwarneq.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t5675.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t5689.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t5753.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t5762.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t5830.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t593.scala: -------------------------------------------------------------------------------- 1 | trait Wrapper[T](x : T) { 2 | } 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t5956.flags: -------------------------------------------------------------------------------- 1 | -deprecation 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6011.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6040.scala: -------------------------------------------------------------------------------- 1 | class X extends Dynamic -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6048.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6120.flags: -------------------------------------------------------------------------------- 1 | -feature -deprecation -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6123-explaintypes-macros/Macros.flags: -------------------------------------------------------------------------------- 1 | -explaintypes 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6162-inheritance.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -deprecation -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6162-overriding.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -deprecation -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6264.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6276.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6289.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6323a.flags: -------------------------------------------------------------------------------- 1 | -Xlog-implicits -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6446-show-phases.flags: -------------------------------------------------------------------------------- 1 | -Xshow-phases 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6534.flags: -------------------------------------------------------------------------------- 1 | -Xlint 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6567.flags: -------------------------------------------------------------------------------- 1 | -Xlint:option-implicit -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6582_exhaust_big.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -unchecked 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6666.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:inline 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6666c.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:inline 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6675.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6675b.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xlint 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t668.scala: -------------------------------------------------------------------------------- 1 | class Test extends Iterable 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6680a.flags: -------------------------------------------------------------------------------- 1 | -Xstrict-inference -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6902.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t6963a.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -Xmigration:2.7 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7014.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7020.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7110.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7171.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -unchecked -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7171b.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -unchecked -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7187-2.13.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.13 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7187.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7285.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7290.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7292-removal.flags: -------------------------------------------------------------------------------- 1 | -Xfuture 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7294b.scala: -------------------------------------------------------------------------------- 1 | class C extends Tuple2[Int, Int](0, 0) -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7369.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7388.scala: -------------------------------------------------------------------------------- 1 | class Test private[doesnotexist]() 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7623.flags: -------------------------------------------------------------------------------- 1 | -Xlint:stars-align -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7669.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7721.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7756b.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7757a.scala: -------------------------------------------------------------------------------- 1 | trait Foo @annot -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7757b.scala: -------------------------------------------------------------------------------- 1 | trait Foo2 2 | @annot2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7783.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t7984.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t8015-ffb.flags: -------------------------------------------------------------------------------- 1 | -Xlint -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t8035-deprecated.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t8035-no-adapted-args.flags: -------------------------------------------------------------------------------- 1 | -Yno-adapted-args -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t8035-removed.flags: -------------------------------------------------------------------------------- 1 | -Xfuture 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t8265.scala: -------------------------------------------------------------------------------- 1 | class Foo[+CC[X]] { type Coll = CC[_] } 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t8450.flags: -------------------------------------------------------------------------------- 1 | -Ywarn-numeric-widen -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t8597.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t8597b.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t8610-arg.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -Xlint nullary-unit 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t8610.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -Xlint 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t8685.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t8700a.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t8700b.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t8704.flags: -------------------------------------------------------------------------------- 1 | -Ywarn-extra-implicit 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t8731.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t9398.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t9636.flags: -------------------------------------------------------------------------------- 1 | -Xlint -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t9675.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t9684.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/t9953.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/unchecked-abstract.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/unchecked-impossible.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/unchecked-knowable.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/unchecked-refinement.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/unchecked-suppress.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/unchecked.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -unchecked -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/unchecked2.flags: -------------------------------------------------------------------------------- 1 | -unchecked -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/unchecked3.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/unit-returns-value.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/unreachablechar.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/virtpatmat_exhaust_compound.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/virtpatmat_reach_null.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/virtpatmat_reach_sealed_unsealed.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/virtpatmat_unreach_select.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/neg/warn-useless-svuid.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/annotated-treecopy.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/classtag-pos.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/comp-rec-test.flags: -------------------------------------------------------------------------------- 1 | -Yrecursion 1 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/constant-warning.flags: -------------------------------------------------------------------------------- 1 | -Xlint:constant 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/cycle-jsoup.flags: -------------------------------------------------------------------------------- 1 | -Ybreak-cycles 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/cycle.flags: -------------------------------------------------------------------------------- 1 | -Ybreak-cycles 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/debug-reset-local-attrs.flags: -------------------------------------------------------------------------------- 1 | -Ydebug 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/delambdafy_t6260_method.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:method 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/dotless-targs-ranged.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos:true 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/dotless-targs.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos:false 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/exhaust_alternatives.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/generic-sigs.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/hk-match/b.scala: -------------------------------------------------------------------------------- 1 | trait Bippy[E[X]] 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/hkarray.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -language:higherKinds -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/implicit-anyval-2.10.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.10 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/infer_override_def_args.flags: -------------------------------------------------------------------------------- 1 | -Yinfer-argument-types -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/infersingle.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/macro-bundle-disambiguate-bundle.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/macro-bundle-disambiguate-nonbundle.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/macro-implicit-invalidate-on-error.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/native-warning.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -deprecation -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/nonlocal-unchecked.flags: -------------------------------------------------------------------------------- 1 | -unchecked -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/override-object-yes.flags: -------------------------------------------------------------------------------- 1 | -Yoverride-objects -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/package-ob-case.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/patmat-hk.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.13 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/polymorphic-case-class.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -unchecked -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/proj-rec-test.flags: -------------------------------------------------------------------------------- 1 | -Yrecursion 1 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/rangepos-anonapply.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/rangepos-patmat.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/rangepos.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/reflection-compat-api-universe.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/reflection-compat-c.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/reflection-compat-macro-universe.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/reflection-compat-ru.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/setter-not-implicit.flags: -------------------------------------------------------------------------------- 1 | -feature -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t0123.scala: -------------------------------------------------------------------------------- 1 | class M{ 2 | val 1 = 1; 3 | } 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t0774/deathname.scala: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t10093.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t10185.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.13 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t10195.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.13 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t10195b.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.13 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t10197.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.13 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t10213.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.13 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t10238.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.13 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t10288.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.13 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t10296.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -Xlint:unused 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t10372.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.13 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1101/J.java: -------------------------------------------------------------------------------- 1 | class J { enum E { E1 } } 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1102/S.scala: -------------------------------------------------------------------------------- 1 | class S(j:J) { j.foo(J.E.E1) } 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1176/S.scala: -------------------------------------------------------------------------------- 1 | class S { new J } 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1196/S.scala: -------------------------------------------------------------------------------- 1 | object S { J.foo(null) } 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1197/J.java: -------------------------------------------------------------------------------- 1 | class J { interface K { } } 2 | 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1197/S.scala: -------------------------------------------------------------------------------- 1 | object S extends J.K 2 | 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1203b/J.java: -------------------------------------------------------------------------------- 1 | interface J { int j = 200 ; } 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1203b/S.scala: -------------------------------------------------------------------------------- 1 | object S { J.j } 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1230/J.java: -------------------------------------------------------------------------------- 1 | class J { public int foo ; } 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1231/J.java: -------------------------------------------------------------------------------- 1 | enum J { j1 } 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1231/S.scala: -------------------------------------------------------------------------------- 1 | object S extends App { println(J.j1) } 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1232/J2.java: -------------------------------------------------------------------------------- 1 | import s.S; 2 | class J2 { } 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1232/S.scala: -------------------------------------------------------------------------------- 1 | package s 2 | class S { j.J.E.e1 } 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1751/A2_1.scala: -------------------------------------------------------------------------------- 1 | @SuiteClasses(Array()) 2 | class A2 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1803.flags: -------------------------------------------------------------------------------- 1 | -Yinfer-argument-types -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1836/S.scala: -------------------------------------------------------------------------------- 1 | class S extends J("") 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1840/S.scala: -------------------------------------------------------------------------------- 1 | package p 2 | class S { new J } 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t1896/D1.scala: -------------------------------------------------------------------------------- 1 | package p 2 | class C extends B 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t2066-2.10-compat.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.10 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t2409/t2409.scala: -------------------------------------------------------------------------------- 1 | object S { new J(null) } -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t2708.scala: -------------------------------------------------------------------------------- 1 | class Foo(@volatile var v: Int) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t2712-1.flags: -------------------------------------------------------------------------------- 1 | -Ypartial-unification 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t2712-2.flags: -------------------------------------------------------------------------------- 1 | -Ypartial-unification 2 | 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t2712-3.flags: -------------------------------------------------------------------------------- 1 | -Ypartial-unification 2 | 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t2712-4.flags: -------------------------------------------------------------------------------- 1 | -Ypartial-unification 2 | 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t2712-5.flags: -------------------------------------------------------------------------------- 1 | -Ypartial-unification 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t2712-6.flags: -------------------------------------------------------------------------------- 1 | -Ypartial-unification 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t2712-7.flags: -------------------------------------------------------------------------------- 1 | -Ypartial-unification 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t2799.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t3368.flags: -------------------------------------------------------------------------------- 1 | -Ystop-after:parser 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t3495.flags: -------------------------------------------------------------------------------- 1 | -Dsoot.class.path=bin:. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t3495.scala: -------------------------------------------------------------------------------- 1 | class Foo { } 2 | 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t3642/t3642_2.scala: -------------------------------------------------------------------------------- 1 | object T { 2 | Tuppel_1.get 3 | } -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t3864/scalaz_2.scala: -------------------------------------------------------------------------------- 1 | object Scalaz extends Tuples -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t3960.flags: -------------------------------------------------------------------------------- 1 | -Ycheck:typer -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t4020.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t4494.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t4494.scala: -------------------------------------------------------------------------------- 1 | object A { 2 | List(1) 3 | } 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t4649.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t4744.flags: -------------------------------------------------------------------------------- 1 | -Ybreak-cycles 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t4911.flags: -------------------------------------------------------------------------------- 1 | -unchecked -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5029.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5031/Id.scala: -------------------------------------------------------------------------------- 1 | package t5031 2 | 3 | object ID 4 | 5 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5165b.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5175.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5542.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -unchecked -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5639.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.12 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5683.flags: -------------------------------------------------------------------------------- 1 | -Ypartial-unification 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5692a.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5692b.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5706.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5809.flags: -------------------------------------------------------------------------------- 1 | -Xlint -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5818.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.13 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5897.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5899.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5930.flags: -------------------------------------------------------------------------------- 1 | -Ywarn-dead-code -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5932.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5954c.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5954d.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -Xdev 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t5968.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6008.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6022.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6047.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6091.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -Xlint 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6123-explaintypes-implicits.flags: -------------------------------------------------------------------------------- 1 | -explaintypes 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6146.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6169/OP.java: -------------------------------------------------------------------------------- 1 | public abstract class OP { } 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6210.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6260.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:inline 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6275.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6537.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6595.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6675.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6771.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6891.flags: -------------------------------------------------------------------------------- 1 | -Ycheck:extmethods -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6895b-2.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.13 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6895b.flags: -------------------------------------------------------------------------------- 1 | -Ypartial-unification 2 | 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6896.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6942.flags: -------------------------------------------------------------------------------- 1 | -nowarn -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6963c.flags: -------------------------------------------------------------------------------- 1 | -Xmigration:2.9 -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6978.flags: -------------------------------------------------------------------------------- 1 | -Xlint -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t6994.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t7011.flags: -------------------------------------------------------------------------------- 1 | -Ydebug -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t7183.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t7232.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t7232b.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t7232c.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t7232d.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t7285a.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t7315.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t7369.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t7427.flags: -------------------------------------------------------------------------------- 1 | -Ydebug 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t7433.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t7551.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t757a.scala: -------------------------------------------------------------------------------- 1 | package foo 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t7649.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t7750.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -feature 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t7776.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t7864.flags: -------------------------------------------------------------------------------- 1 | -Xlint -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8001.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8001.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8064.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8064b.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8157-2.10.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.10 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8187.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8209a.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8209b.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8352.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8363.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:method 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8364.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8369a.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8369b.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8497/B_2.scala: -------------------------------------------------------------------------------- 1 | package p { object Test { Crash } } 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8523.flags: -------------------------------------------------------------------------------- 1 | -Ywarn-dead-code -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8546.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8578.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:method 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8596.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8617.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8719.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8736-b.flags: -------------------------------------------------------------------------------- 1 | -feature -language:_ -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8828.flags: -------------------------------------------------------------------------------- 1 | -Xlint:inaccessible -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8861.flags: -------------------------------------------------------------------------------- 1 | -Xlint:infer-any -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8868a/Sub_2.scala: -------------------------------------------------------------------------------- 1 | class Sub extends T 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8868b/Sub_2.scala: -------------------------------------------------------------------------------- 1 | class Sub extends T 2 | 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8868c/Sub_2.scala: -------------------------------------------------------------------------------- 1 | class Sub extends T 2 | 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8873.scala: -------------------------------------------------------------------------------- 1 | case class X(@volatile var x:Int) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8947/Client_2.scala: -------------------------------------------------------------------------------- 1 | object Test { X.extractor } -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8954.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -deprecation 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8965.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t8999.flags: -------------------------------------------------------------------------------- 1 | -nowarn -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t9020.flags: -------------------------------------------------------------------------------- 1 | -Ywarn-value-discard -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t9178b.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t9181.flags: -------------------------------------------------------------------------------- 1 | -nowarn -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t9285.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t9285.scala: -------------------------------------------------------------------------------- 1 | case class C(placeholder: Unit) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t9369.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -unchecked 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t9399.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t9411a.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t9411b.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t9630.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/t9918/package.scala: -------------------------------------------------------------------------------- 1 | package object pkg extends T 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/unchecked-a.flags: -------------------------------------------------------------------------------- 1 | -unchecked -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/value-class-override-no-spec.flags: -------------------------------------------------------------------------------- 1 | -no-specialization -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/virtpatmat_alts_subst.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/virtpatmat_binding_opt.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/virtpatmat_castbinder.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/virtpatmat_exhaust_unchecked.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/virtpatmat_exist1.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/virtpatmat_exist2.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/virtpatmat_exist3.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/virtpatmat_gadt_array.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/virtpatmat_infer_single_1.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/virtpatmat_instof_valuetype.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/virtpatmat_obj_in_case.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/xlint1.flags: -------------------------------------------------------------------------------- 1 | -Xlint -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/pos/z1730.flags: -------------------------------------------------------------------------------- 1 | -Ycheck:all -------------------------------------------------------------------------------- /sample-projects/scala/test/files/positions/Empty.scala: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/positions/Enclosing4.scala: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/presentation/doc/src/Class.scala: -------------------------------------------------------------------------------- 1 | object Class -------------------------------------------------------------------------------- /sample-projects/scala/test/files/presentation/ide-t1000976.check: -------------------------------------------------------------------------------- 1 | Test OK -------------------------------------------------------------------------------- /sample-projects/scala/test/files/presentation/ide-t1000976.flags: -------------------------------------------------------------------------------- 1 | -sourcepath src -------------------------------------------------------------------------------- /sample-projects/scala/test/files/presentation/ide-t1001388.check: -------------------------------------------------------------------------------- 1 | Test OK -------------------------------------------------------------------------------- /sample-projects/scala/test/files/presentation/private-case-class-members.check: -------------------------------------------------------------------------------- 1 | Test OK 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/presentation/quasiquotes.flags: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/presentation/t7548.check: -------------------------------------------------------------------------------- 1 | (x: Int)Unit 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/presentation/t7678.check: -------------------------------------------------------------------------------- 1 | reload: TypeTag.scala 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/presentation/t8085.flags: -------------------------------------------------------------------------------- 1 | -sourcepath src 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/presentation/t8085b.flags: -------------------------------------------------------------------------------- 1 | -sourcepath src 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/abstype_implicits.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.13 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/all-overridden.check: -------------------------------------------------------------------------------- 1 | method g 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/amp.check: -------------------------------------------------------------------------------- 1 | g called 2 | 42 3 | 1 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/anyval-box-types.flags: -------------------------------------------------------------------------------- 1 | -Xmaxwarns 0 -opt:l:method -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/arybufgrow.check: -------------------------------------------------------------------------------- 1 | 1000 = 1000 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/backreferences.check: -------------------------------------------------------------------------------- 1 | false 2 | true 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/breakout.check: -------------------------------------------------------------------------------- 1 | 2, 3, 4 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/bridges.javaopts: -------------------------------------------------------------------------------- 1 | -Xss128M 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/buffer-slice.check: -------------------------------------------------------------------------------- 1 | ArrayBuffer() 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/case-class-23.check: -------------------------------------------------------------------------------- 1 | 23 2 | (1,23) 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/caseclasses.check: -------------------------------------------------------------------------------- 1 | OK 2 | creating C(hi) 3 | OK 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/castsingleton.check: -------------------------------------------------------------------------------- 1 | L() 2 | L() 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/checked.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit -nowarn 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/checkinit.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/classmanifests_new_alias.check: -------------------------------------------------------------------------------- 1 | Int 2 | true 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/classmanifests_new_core.check: -------------------------------------------------------------------------------- 1 | Int 2 | true 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/classtags_contextbound.check: -------------------------------------------------------------------------------- 1 | class [I 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/ctor-order.check: -------------------------------------------------------------------------------- 1 | 10 2 | 10 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/delambdafy-nested-by-name.check: -------------------------------------------------------------------------------- 1 | hello 2 | world 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/delambdafy-two-lambdas.check: -------------------------------------------------------------------------------- 1 | 13 2 | 24 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/deprecate-early-type-defs.flags: -------------------------------------------------------------------------------- 1 | -deprecation -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/disable-assertions.flags: -------------------------------------------------------------------------------- 1 | -Xdisable-assertions 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/distinct.check: -------------------------------------------------------------------------------- 1 | abcdefghijklmnopqrstuvwxyz 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/duplicate-meth.check: -------------------------------------------------------------------------------- 1 | verified! 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/elidable-opt.flags: -------------------------------------------------------------------------------- 1 | -Xelide-below 900 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/elidable.flags: -------------------------------------------------------------------------------- 1 | -Xelide-below WARNING 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/empty-array.check: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | 0 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/emptypf.check: -------------------------------------------------------------------------------- 1 | 100 2 | 3 3 | false 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/eta-expand-star.check: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/exceptions.check: -------------------------------------------------------------------------------- 1 | ok: lookup(2000) = KO 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/freetypes_false_alarm1.check: -------------------------------------------------------------------------------- 1 | scala.List[Int] 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/freetypes_false_alarm2.check: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/gadts.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/genericValueClass.check: -------------------------------------------------------------------------------- 1 | (1,abc) 2 | (2,def) 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/getClassTest-valueClass.check: -------------------------------------------------------------------------------- 1 | int 2 | class V 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/hk-typevar-unification.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.13 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/imain.check: -------------------------------------------------------------------------------- 1 | Some(246) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/impconvtimes.check: -------------------------------------------------------------------------------- 1 | 3.0 * Hour = Measure(3.0,Hour) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/implicits.check: -------------------------------------------------------------------------------- 1 | OK 2 | [2] 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/indexedSeq-apply.check: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/java-erasure.check: -------------------------------------------------------------------------------- 1 | c 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/kmpSliceSearch.check: -------------------------------------------------------------------------------- 1 | 6 6 2 | 5 10 3 | -1 -1 4 | 4 4 5 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/kmpSliceSearch.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:inline -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/lazy-concurrent.check: -------------------------------------------------------------------------------- 1 | Initializing singleton. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/literals.flags: -------------------------------------------------------------------------------- 1 | -deprecation 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-abort-fresh.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-auto-duplicate.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-basic-ma-md-mi.check: -------------------------------------------------------------------------------- 1 | 31 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-basic-ma-mdmi.check: -------------------------------------------------------------------------------- 1 | 31 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-basic-mamd-mi.check: -------------------------------------------------------------------------------- 1 | 31 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-bodyexpandstoimpl.check: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-bundle-context-refinement.check: -------------------------------------------------------------------------------- 1 | C 2 | C 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-bundle-toplevel.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-def-path-dependent.check: -------------------------------------------------------------------------------- 1 | it works 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-default-params.check: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-divergence-spurious.check: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-duplicate.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-enclosures.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-expand-implicit-argument.check: -------------------------------------------------------------------------------- 1 | List(1, 2, 3) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-expand-implicit-macro-has-implicit.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-expand-implicit-macro-is-val.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-expand-implicit-macro-is-view.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-expand-multiple-arglists.check: -------------------------------------------------------------------------------- 1 | 38 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-expand-overload.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-expand-override.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-expand-recursive.check: -------------------------------------------------------------------------------- 1 | it works 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-expand-tparams-explicit.check: -------------------------------------------------------------------------------- 1 | WeakTypeTag[Int] 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-expand-unapply-a.check: -------------------------------------------------------------------------------- 1 | (1,2) 2 | (1,2,3) 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-parse-position.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos:false 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-quasiinvalidbody-c.check: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-quasiquotes.check: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-range.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-rangepos-args.check: -------------------------------------------------------------------------------- 1 | Line: 3. Width: 5. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-rangepos-args.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-rangepos-subpatterns.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-reflective-ma-normal-mdmi.check: -------------------------------------------------------------------------------- 1 | 43 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-reflective-mamd-normal-mi.check: -------------------------------------------------------------------------------- 1 | 43 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-reify-basic.check: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-reify-ref-to-packageless.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-reify-splice-outside-reify.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-reify-tagful-a.check: -------------------------------------------------------------------------------- 1 | List(hello world) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-reify-type.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-settings.check: -------------------------------------------------------------------------------- 1 | List(hello=1) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-sip19.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-vampire-false-warning.check: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-vampire-false-warning.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-whitebox-extractor.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macro-whitebox-structural.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macroPlugins-isBlackbox/Test_3.flags: -------------------------------------------------------------------------------- 1 | -Xplugin:. -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macroPlugins-macroArgs/Test_3.flags: -------------------------------------------------------------------------------- 1 | -Xplugin:. -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macroPlugins-macroExpand.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos:false 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macroPlugins-macroExpand/Test_3.flags: -------------------------------------------------------------------------------- 1 | -Xplugin:. -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/macroPlugins-macroRuntime/Test_3.flags: -------------------------------------------------------------------------------- 1 | -Xplugin:. -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/matchbytes.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/matchemptyarray.check: -------------------------------------------------------------------------------- 1 | Array() 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/matchintasany.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/matchonstream.check: -------------------------------------------------------------------------------- 1 | It worked! 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/missingparams.check: -------------------------------------------------------------------------------- 1 | None 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/no-pickle-skolems.check: -------------------------------------------------------------------------------- 1 | OK! 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/nonlocalreturn.check: -------------------------------------------------------------------------------- 1 | Some(1) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/nothingTypeDce.flags: -------------------------------------------------------------------------------- 1 | -opt:unreachable-code 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/nothingTypeNoOpt.flags: -------------------------------------------------------------------------------- 1 | -opt:l:none 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/patmat-bind-typed.check: -------------------------------------------------------------------------------- 1 | abc 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/patmat-exprs.check: -------------------------------------------------------------------------------- 1 | ((5 + 10) + 300) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/phantomValueClass.check: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/primitive-sigs-2-new.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:inline 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/primitive-sigs-2-old.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:inline -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/rawstrings.check: -------------------------------------------------------------------------------- 1 | [\n\t'"$\n] 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reflect-priv-ctor.check: -------------------------------------------------------------------------------- 1 | privately constructed 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reflection-fieldmirror-getsetval.check: -------------------------------------------------------------------------------- 1 | 42 2 | 2 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reflection-fieldmirror-getsetvar.check: -------------------------------------------------------------------------------- 1 | 42 2 | 2 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reflection-modulemirror-inner-good.check: -------------------------------------------------------------------------------- 1 | R 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reflection-modulemirror-nested-good.check: -------------------------------------------------------------------------------- 1 | R 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reflection-modulemirror-toplevel-good.check: -------------------------------------------------------------------------------- 1 | R -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reflection-sync-subtypes.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reflection-tags.check: -------------------------------------------------------------------------------- 1 | List() 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reflinit.check: -------------------------------------------------------------------------------- 1 | List[Int] 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_anonymous.check: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_closure1.check: -------------------------------------------------------------------------------- 1 | 10 2 | 10 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_closure2a.check: -------------------------------------------------------------------------------- 1 | 11 2 | 12 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_closure3a.check: -------------------------------------------------------------------------------- 1 | 11 2 | 12 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_closure4a.check: -------------------------------------------------------------------------------- 1 | 11 2 | 12 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_closure5a.check: -------------------------------------------------------------------------------- 1 | 13 2 | 14 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_closure8a.check: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_closures10.check: -------------------------------------------------------------------------------- 1 | 5 2 | 5 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_complex.check: -------------------------------------------------------------------------------- 1 | 3.0+4.0*i 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_copypaste1.check: -------------------------------------------------------------------------------- 1 | List(1, 2) 2 | 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_extendbuiltins.check: -------------------------------------------------------------------------------- 1 | 10! = 3628800 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_generic.check: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_generic2.check: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_getter.check: -------------------------------------------------------------------------------- 1 | evaluated = 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_implicits-new.check: -------------------------------------------------------------------------------- 1 | x = List(1, 2, 3, 4) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_implicits-old.check: -------------------------------------------------------------------------------- 1 | x = List(1, 2, 3, 4) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_inheritance.check: -------------------------------------------------------------------------------- 1 | 18 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_inner1.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_inner2.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_inner3.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_inner4.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_01.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_02.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_03.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_04.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_05.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_06.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_12.check: -------------------------------------------------------------------------------- 1 | List(2) -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_14.check: -------------------------------------------------------------------------------- 1 | List(2) -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_15.check: -------------------------------------------------------------------------------- 1 | List(2) -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_18.check: -------------------------------------------------------------------------------- 1 | List(2) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_20.check: -------------------------------------------------------------------------------- 1 | List(2) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_21.check: -------------------------------------------------------------------------------- 1 | List(2) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_27.check: -------------------------------------------------------------------------------- 1 | List(2) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_29.check: -------------------------------------------------------------------------------- 1 | List(2) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_31.check: -------------------------------------------------------------------------------- 1 | List(2) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_33.check: -------------------------------------------------------------------------------- 1 | List(2) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_36.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_37.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_38.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_39.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_40.check: -------------------------------------------------------------------------------- 1 | 74088 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_41.check: -------------------------------------------------------------------------------- 1 | 42 2 | 44 3 | 43 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_42.check: -------------------------------------------------------------------------------- 1 | 42 2 | 44 3 | 43 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_43.check: -------------------------------------------------------------------------------- 1 | 1 2 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_44.check: -------------------------------------------------------------------------------- 1 | 1 2 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_47.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_48.check: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_49.check: -------------------------------------------------------------------------------- 1 | 3 2 | 3 3 | 5 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_50.check: -------------------------------------------------------------------------------- 1 | 3 2 | 3 3 | 5 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_51.check: -------------------------------------------------------------------------------- 1 | 2 2 | 1 3 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_newimpl_52.check: -------------------------------------------------------------------------------- 1 | 2 2 | 2 3 | 1 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_printf.check: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_renamed_term_overloaded_method.check: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_renamed_type_basic.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_renamed_type_local_to_reifee.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_renamed_type_spliceable.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_sort.check: -------------------------------------------------------------------------------- 1 | [6,2,8,5,1] 2 | [1,2,5,6,8] 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_this.check: -------------------------------------------------------------------------------- 1 | foo 2 | false 3 | 2 4 | bar 5 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/reify_timeofday.check: -------------------------------------------------------------------------------- 1 | DateError 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/repl-paste-parse.script: -------------------------------------------------------------------------------- 1 | val case = 9 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/resetattrs-this.check: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/retclosure.check: -------------------------------------------------------------------------------- 1 | check failed: some problem 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/retsynch.check: -------------------------------------------------------------------------------- 1 | abs(-5) = 5 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/runtimeEval1.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/runtimeEval2.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/sammy_restrictions_LMF.check: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/sammy_vararg_cbn.check: -------------------------------------------------------------------------------- 1 | WrappedArray(1) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/sd167.check: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/sd304.check: -------------------------------------------------------------------------------- 1 | class Test 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/showraw_nosymbol.check: -------------------------------------------------------------------------------- 1 | NoSymbol 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/spec-self.check: -------------------------------------------------------------------------------- 1 | 5.0 2 | 5.0 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/static-module-method.check: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t0005.check: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t0042.check: -------------------------------------------------------------------------------- 1 | Some(1) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t0048.check: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t0091.check: -------------------------------------------------------------------------------- 1 | 5 2 | 5 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t0528.check: -------------------------------------------------------------------------------- 1 | Array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t0607.check: -------------------------------------------------------------------------------- 1 | A() 2 | B() 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t0807.check: -------------------------------------------------------------------------------- 1 | early 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t0883.check: -------------------------------------------------------------------------------- 1 | OK 2 | OK 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t10026.check: -------------------------------------------------------------------------------- 1 | List(1, 2, 3) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t10067.flags: -------------------------------------------------------------------------------- 1 | -unchecked 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t10097.flags: -------------------------------------------------------------------------------- 1 | -deprecation 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t102.check: -------------------------------------------------------------------------------- 1 | (5,5) 2 | (10,10) 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t10283.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.13 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t10284.check: -------------------------------------------------------------------------------- 1 | res0: Int = 42 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t1042.check: -------------------------------------------------------------------------------- 1 | B 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t10439.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t1048.check: -------------------------------------------------------------------------------- 1 | 3 2 | 2 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t107.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t1141.check: -------------------------------------------------------------------------------- 1 | var 2 | args 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t1167.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:inline -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t1360.check: -------------------------------------------------------------------------------- 1 | [one, two] 2 | [1, 2, 3] 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t1423.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t1430.check: -------------------------------------------------------------------------------- 1 | Baz 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t1503.check: -------------------------------------------------------------------------------- 1 | whoops 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t1503_future.flags: -------------------------------------------------------------------------------- 1 | -Xfuture -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t1524.check: -------------------------------------------------------------------------------- 1 | initial 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t1535.check: -------------------------------------------------------------------------------- 1 | 42 2 | true 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t1537.check: -------------------------------------------------------------------------------- 1 | true 2 | true -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t1591.check: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t1718.check: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t1987.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t1987b.check: -------------------------------------------------------------------------------- 1 | ok! 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t2027.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t2029.check: -------------------------------------------------------------------------------- 1 | 1,2,3,4,5 2 | 4,3,2 3 | true 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t2147.check: -------------------------------------------------------------------------------- 1 | 11 2 | 11 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t216.check: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t2176.check: -------------------------------------------------------------------------------- 1 | Stream(1) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t2177.check: -------------------------------------------------------------------------------- 1 | 12345 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t2251.flags: -------------------------------------------------------------------------------- 1 | -Xstrict-inference -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t2251b.flags: -------------------------------------------------------------------------------- 1 | -Xstrict-inference -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t2296c.check: -------------------------------------------------------------------------------- 1 | RUNNING ACTION 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t2308a.check: -------------------------------------------------------------------------------- 1 | interface Test$T 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t2318.check: -------------------------------------------------------------------------------- 1 | bar 2 | bar 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t2418.check: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t2446.check: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t2488.check: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 1 4 | 2 5 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t2577.check: -------------------------------------------------------------------------------- 1 | Nothing 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t261.check: -------------------------------------------------------------------------------- 1 | A 2 | B 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t2788.check: -------------------------------------------------------------------------------- 1 | List(1, 2) -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t2857.check: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t2873.check: -------------------------------------------------------------------------------- 1 | RedBlack.Empty$ 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3026.check: -------------------------------------------------------------------------------- 1 | RED 2 | YELLOW 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3038b.check: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3038b.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3038d.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3097.check: -------------------------------------------------------------------------------- 1 | atomic 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3158.check: -------------------------------------------------------------------------------- 1 | Array() 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3186.check: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3199b.check: -------------------------------------------------------------------------------- 1 | [1, 2, 3] 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3235-minimal.flags: -------------------------------------------------------------------------------- 1 | -deprecation 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3241.check: -------------------------------------------------------------------------------- 1 | done -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3269.check: -------------------------------------------------------------------------------- 1 | 1 2 | Hello 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3327.check: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3346a.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3346f.check: -------------------------------------------------------------------------------- 1 | 5 2 | 5 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3346g.check: -------------------------------------------------------------------------------- 1 | A(3,asdf) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3346h.check: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3346j.check: -------------------------------------------------------------------------------- 1 | Int 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3353.check: -------------------------------------------------------------------------------- 1 | Got: foo and None 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3395.check: -------------------------------------------------------------------------------- 1 | abc 2 | def 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3452.check: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3507-new.check: -------------------------------------------------------------------------------- 1 | _1.b.c.type 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3616.check: -------------------------------------------------------------------------------- 1 | Fruit.ValueSet(A, B, C) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3667.check: -------------------------------------------------------------------------------- 1 | 4 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3670.check: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | 1 4 | 2 5 | 42 6 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3702.check: -------------------------------------------------------------------------------- 1 | () 2 | 6 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3726.check: -------------------------------------------------------------------------------- 1 | hi there 2 | 5 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3798.check: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3835.check: -------------------------------------------------------------------------------- 1 | 6 2 | 1 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3888.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3895.check: -------------------------------------------------------------------------------- 1 | 17 2 | 17 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3895.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3897.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:inline -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3950.check: -------------------------------------------------------------------------------- 1 | minus 2 | zero 3 | plus -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3964.check: -------------------------------------------------------------------------------- 1 | 42 2 | -21 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t3980.check: -------------------------------------------------------------------------------- 1 | once 2 | 2 3 | 2 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4062.check: -------------------------------------------------------------------------------- 1 | false 2 | true 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4072.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4148.check: -------------------------------------------------------------------------------- 1 | cce1 2 | 5 3 | 100 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4171.check: -------------------------------------------------------------------------------- 1 | 1 2 | 5 3 | class Test$B$1 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4190.check: -------------------------------------------------------------------------------- 1 | a0 2 | b0 3 | c0 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t429.check: -------------------------------------------------------------------------------- 1 | AyB5 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4317.check: -------------------------------------------------------------------------------- 1 | 0 2 | 99 3 | 33 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4317.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4351.check: -------------------------------------------------------------------------------- 1 | runtime exception 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4482.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4536.flags: -------------------------------------------------------------------------------- 1 | -language:dynamics 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4537.check: -------------------------------------------------------------------------------- 1 | b.Settings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4560b.check: -------------------------------------------------------------------------------- 1 | 23 2 | SUCCESS 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4565_1.check: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4570.check: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4601.check: -------------------------------------------------------------------------------- 1 | 'blubber 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4617.check: -------------------------------------------------------------------------------- 1 | Str 8.0 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4625.check: -------------------------------------------------------------------------------- 1 | Test ran. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4625b.check: -------------------------------------------------------------------------------- 1 | Misc top-level detritus 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4656.check: -------------------------------------------------------------------------------- 1 | List(1, 2, 3) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4697.check: -------------------------------------------------------------------------------- 1 | 50005000 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4742.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4750.check: -------------------------------------------------------------------------------- 1 | US$ 5.80 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4753.check: -------------------------------------------------------------------------------- 1 | boolean 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4766.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4770.check: -------------------------------------------------------------------------------- 1 | (a,2) 2 | (2,a) 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4777.check: -------------------------------------------------------------------------------- 1 | 28 2 | 28 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4788/C.scala: -------------------------------------------------------------------------------- 1 | @CAnnotation 2 | class C 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4788/R.scala: -------------------------------------------------------------------------------- 1 | @RAnnotation 2 | class R 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4788/S.scala: -------------------------------------------------------------------------------- 1 | @SAnnotation 2 | class S 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4794.check: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4897.check: -------------------------------------------------------------------------------- 1 | joepie 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t4935.check: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5037.check: -------------------------------------------------------------------------------- 1 | true 2 | false 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5040.check: -------------------------------------------------------------------------------- 1 | applyDynamic 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5040.flags: -------------------------------------------------------------------------------- 1 | -language:dynamics 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5080.check: -------------------------------------------------------------------------------- 1 | hey 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5158.check: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5171.check: -------------------------------------------------------------------------------- 1 | IsList 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5201.check: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5229_2.check: -------------------------------------------------------------------------------- 1 | 2 2 | evaluated = () 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5230.check: -------------------------------------------------------------------------------- 1 | 2 2 | evaluated = () 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5258a.check: -------------------------------------------------------------------------------- 1 | int -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5266_1.check: -------------------------------------------------------------------------------- 1 | 2 2 | evaluated = () -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5266_2.check: -------------------------------------------------------------------------------- 1 | 2 2 | evaluated = () -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5269.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5270.check: -------------------------------------------------------------------------------- 1 | 200 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5272_1_newpatmat.check: -------------------------------------------------------------------------------- 1 | okay -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5272_1_oldpatmat.check: -------------------------------------------------------------------------------- 1 | okay -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5272_2_newpatmat.check: -------------------------------------------------------------------------------- 1 | okay2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5272_2_oldpatmat.check: -------------------------------------------------------------------------------- 1 | okay2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5273_1_newpatmat.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5273_1_oldpatmat.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5273_2a_newpatmat.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5273_2a_oldpatmat.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5274_2.check: -------------------------------------------------------------------------------- 1 | [6,2,8,5,1] 2 | [1,2,5,6,8] 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5275.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5276_1a.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5276_1b.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5276_2a.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5276_2b.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5277_1.check: -------------------------------------------------------------------------------- 1 | 10! = 3628800 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5277_2.check: -------------------------------------------------------------------------------- 1 | 2() 2 | 1() 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5279.check: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5284.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5328.check: -------------------------------------------------------------------------------- 1 | 2 2 | 1,2,8 3 | 1,8,3 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5334_1.check: -------------------------------------------------------------------------------- 1 | C -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5334_2.check: -------------------------------------------------------------------------------- 1 | List((C,C)) -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5335.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5407.check: -------------------------------------------------------------------------------- 1 | 2 2 | 2 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5419.check: -------------------------------------------------------------------------------- 1 | 5: @Foo.asInstanceOf[Int] 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5423.check: -------------------------------------------------------------------------------- 1 | List(table) -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5544.check: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5568.flags: -------------------------------------------------------------------------------- 1 | -nowarn 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5608.check: -------------------------------------------------------------------------------- 1 | A@6 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5610a.check: -------------------------------------------------------------------------------- 1 | Stroke a kitten 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5614.check: -------------------------------------------------------------------------------- 1 | 3 2 | a 3 | b 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5648.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5676.check: -------------------------------------------------------------------------------- 1 | ok 2 | false 3 | true 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5676.flags: -------------------------------------------------------------------------------- 1 | -Yoverride-objects 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5688.check: -------------------------------------------------------------------------------- 1 | Vector(ta, tb, tab) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5704.check: -------------------------------------------------------------------------------- 1 | String 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5704.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5710-1.check: -------------------------------------------------------------------------------- 1 | evaluated = (abc,abc) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5710-2.check: -------------------------------------------------------------------------------- 1 | evaluated = (abc,abc) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5713.check: -------------------------------------------------------------------------------- 1 | err 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5713.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5733.check: -------------------------------------------------------------------------------- 1 | Running ABTest asserts 2 | Done 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5753_1.check: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5753_1.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5753_2.check: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5753_2.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5804.check: -------------------------------------------------------------------------------- 1 | 128 2 | 16 3 | 128 4 | 32 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5816.check: -------------------------------------------------------------------------------- 1 | 5.+(Test.this.y) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5824.check: -------------------------------------------------------------------------------- 1 | a b c 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5830.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5866.check: -------------------------------------------------------------------------------- 1 | 0.0 2 | Foo(0.0) 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5903a.flags: -------------------------------------------------------------------------------- 1 | -Xlog-reflective-calls -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5903b.check: -------------------------------------------------------------------------------- 1 | oops 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5903b.flags: -------------------------------------------------------------------------------- 1 | -Xlog-reflective-calls -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5903c.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5903c.flags: -------------------------------------------------------------------------------- 1 | -Xlog-reflective-calls -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5903d.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5903d.flags: -------------------------------------------------------------------------------- 1 | -Xlog-reflective-calls -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5905-features.flags: -------------------------------------------------------------------------------- 1 | -nowarn 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5914.check: -------------------------------------------------------------------------------- 1 | correct 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t594.check: -------------------------------------------------------------------------------- 1 | one 2 | two 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5943a2.check: -------------------------------------------------------------------------------- 1 | Vector(2, 3, 4) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t5974.check: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t601.check: -------------------------------------------------------------------------------- 1 | FooA 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6011b.check: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6063.check: -------------------------------------------------------------------------------- 1 | public static int foo.Ob.f5() 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6070.check: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6077_patmat_cse_irrefutable.check: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6086-vanilla.check: -------------------------------------------------------------------------------- 1 | X 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6102.check: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6104.check: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6113.check: -------------------------------------------------------------------------------- 1 | Foo[[X](Int, X)] 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6154.check: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6178.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6181.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6194.check: -------------------------------------------------------------------------------- 1 | C:\FooBar\Java\includes\*.jar 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6199-mirror.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6199-toolbox.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6221.check: -------------------------------------------------------------------------------- 1 | ((x) => x.$percent(2).$eq$eq(0)) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6240a.check: -------------------------------------------------------------------------------- 1 | StepTwo.type 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6240b.check: -------------------------------------------------------------------------------- 1 | StepThree.type 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6260.check: -------------------------------------------------------------------------------- 1 | Box(abcabc) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t627.check: -------------------------------------------------------------------------------- 1 | WrappedArray(1, 2, 3, 4) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6277.check: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t629.check: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6309.check: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6327.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos:false 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6392a.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6394a.check: -------------------------------------------------------------------------------- 1 | TEST 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6394a.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6394b.check: -------------------------------------------------------------------------------- 1 | TEST 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6394b.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6411b.check: -------------------------------------------------------------------------------- 1 | Bar(Foo(3)) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6443-varargs.check: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6541.flags: -------------------------------------------------------------------------------- 1 | -feature -Xfatal-warnings -Xsource:2.12 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t657.check: -------------------------------------------------------------------------------- 1 | passed 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6574b.check: -------------------------------------------------------------------------------- 1 | List(5, 4, 3, 2, 1) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6608.check: -------------------------------------------------------------------------------- 1 | (C$$yyy,true) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6637.check: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6662.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6663.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6663.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos:false 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6673.check: -------------------------------------------------------------------------------- 1 | List(x) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6719.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6725-1.check: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6731.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos:false 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6888.check: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | 3 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6928-run.check: -------------------------------------------------------------------------------- 1 | 3 As 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6968.check: -------------------------------------------------------------------------------- 1 | 1, 3, 5 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t6969.check: -------------------------------------------------------------------------------- 1 | All threads completed. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7039.check: -------------------------------------------------------------------------------- 1 | Matched! 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7088.check: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7120.check: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7157.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7171.flags: -------------------------------------------------------------------------------- 1 | -unchecked 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7187-2.13.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.13 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7223.check: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7246.check: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7246b.check: -------------------------------------------------------------------------------- 1 | base 2 | sub 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7249.check: -------------------------------------------------------------------------------- 1 | Yup! 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7291.check: -------------------------------------------------------------------------------- 1 | conjure 2 | traversable 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7300.check: -------------------------------------------------------------------------------- 1 | 2 2 | 2 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7331a.check: -------------------------------------------------------------------------------- 1 | source-,line-1,offset=0 2 | 2 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7341.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7359.check: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7406.check: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7407.check: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7407.flags: -------------------------------------------------------------------------------- 1 | -opt:l:none 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7407b.check: -------------------------------------------------------------------------------- 1 | Hello 2 | abc 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7439/A_1.java: -------------------------------------------------------------------------------- 1 | public class A_1 { 2 | 3 | } -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t744.check: -------------------------------------------------------------------------------- 1 | BEGIN 2 | Hello from linked 3 | END 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7475b.check: -------------------------------------------------------------------------------- 1 | 2 2 | 2 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7570a.check: -------------------------------------------------------------------------------- 1 | C 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7584.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7617a.check: -------------------------------------------------------------------------------- 1 | hello 2 | world 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7617b.check: -------------------------------------------------------------------------------- 1 | foo = 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7715.check: -------------------------------------------------------------------------------- 1 | 6 2 | 4 3 | 4 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7805-repl-i.script: -------------------------------------------------------------------------------- 1 | import util._ 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7852.flags: -------------------------------------------------------------------------------- 1 | -opt:l:none 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t7974.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit:false 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8017.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:method 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8048a.check: -------------------------------------------------------------------------------- 1 | Some(2) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8048b.check: -------------------------------------------------------------------------------- 1 | 2 2 | 2 3 | 2 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8100.check: -------------------------------------------------------------------------------- 1 | Success(0) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8153.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8266-octal-interp.flags: -------------------------------------------------------------------------------- 1 | -deprecation 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8321.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8437.check: -------------------------------------------------------------------------------- 1 | 5 2 | 5 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8442.check: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8570.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8570a.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8570a.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8610.flags: -------------------------------------------------------------------------------- 1 | -Xlint:adapted-args 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8611a.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8611b.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8611c.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8637.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8690.check: -------------------------------------------------------------------------------- 1 | non-empty iterator 2 | abcdef 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8888.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:method 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8925.check: -------------------------------------------------------------------------------- 1 | bar 2 | abcd 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8925.flags: -------------------------------------------------------------------------------- 1 | -opt:l:none 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8931.check: -------------------------------------------------------------------------------- 1 | List(interface B) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t8933.check: -------------------------------------------------------------------------------- 1 | 'traitSymbol 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t9029.flags: -------------------------------------------------------------------------------- 1 | -deprecation 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t9029b.check: -------------------------------------------------------------------------------- 1 | Some(1) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t9178a.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t920.check: -------------------------------------------------------------------------------- 1 | baz 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t9252.check: -------------------------------------------------------------------------------- 1 | class [Lscala.runtime.BoxedUnit; 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t9365.check: -------------------------------------------------------------------------------- 1 | foo 2 | foo 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t9387b.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/t9489.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/tcpoly_monads.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/tcpoly_overriding.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/toolbox_default_reporter_is_silent.check: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/toolbox_expand_macro.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/toolbox_typecheck_inferimplicitvalue.check: -------------------------------------------------------------------------------- 1 | C.MC 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/trait-static-forwarder.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/typealias_overriding.check: -------------------------------------------------------------------------------- 1 | LinkedNode 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/typecheck.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/typed-annotated.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/valueclasses-classmanifest-basic.check: -------------------------------------------------------------------------------- 1 | Foo 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/valueclasses-classtag-basic.check: -------------------------------------------------------------------------------- 1 | Foo 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/valueclasses-classtag-existential.check: -------------------------------------------------------------------------------- 1 | Object 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/valueclasses-classtag-generic.check: -------------------------------------------------------------------------------- 1 | Foo 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/valueclasses-manifest-basic.check: -------------------------------------------------------------------------------- 1 | Foo 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/valueclasses-typetag-basic.check: -------------------------------------------------------------------------------- 1 | Foo 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/valueclasses-typetag-existential.check: -------------------------------------------------------------------------------- 1 | Foo[_] 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/valueclasses-typetag-generic.check: -------------------------------------------------------------------------------- 1 | Foo[String] 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/verify-ctor.check: -------------------------------------------------------------------------------- 1 | abc 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_apply.check: -------------------------------------------------------------------------------- 1 | OK 2 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_apply.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_casting.check: -------------------------------------------------------------------------------- 1 | List(1) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_casting.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_extends_product.flags: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_literal.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_npe.check: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_npe.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_partial.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_stringinterp.check: -------------------------------------------------------------------------------- 1 | Node(1) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_stringinterp.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_switch.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_tailcalls_verifyerror.check: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_try.check: -------------------------------------------------------------------------------- 1 | meh 2 | B 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_try.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_typed.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_typetag.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_unapply.check: -------------------------------------------------------------------------------- 1 | 1 2 | 6 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_unapply.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_unapplyprod.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_unapplyseq.check: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_unapplyseq.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/virtpatmat_valdef.check: -------------------------------------------------------------------------------- 1 | meh(true,null) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/run/wacky-value-classes.flags: -------------------------------------------------------------------------------- 1 | -Xverify -------------------------------------------------------------------------------- /sample-projects/scala/test/files/scalap/cbnParam.scala: -------------------------------------------------------------------------------- 1 | class CbnParam(s: => String) 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/specialized/spec-absfun.check: -------------------------------------------------------------------------------- 1 | 4006000 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/specialized/spec-ame.check: -------------------------------------------------------------------------------- 1 | abc 2 | 10 3 | 2 4 | -------------------------------------------------------------------------------- /sample-projects/scala/test/files/specialized/spec-constr.check: -------------------------------------------------------------------------------- 1 | hello? 2 | goodbye 3 | 0 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/specialized/spec-overrides.check: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /sample-projects/scala/test/files/specialized/spec-patmatch.flags: -------------------------------------------------------------------------------- 1 | -opt:l:none -------------------------------------------------------------------------------- /sample-projects/scala/test/files/specialized/t6035.check: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.obj/ 3 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/javascript/package.html: -------------------------------------------------------------------------------- 1 | dummy 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/diagrams-base.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/diagrams-determinism.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/diagrams-filtering.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/diagrams-inherited-nodes.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/groups.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/implicits-ambiguating.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/implicits-base.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/implicits-chaining.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/implicits-known-type-classes.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/implicits-scopes.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/implicits-shadowing.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/implicits-var-exp.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/inlineToStr-strips-unwanted-text.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/inlineToStrForTitleTag.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/links.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/shortDescription-annotation.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t10027.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t191.check: -------------------------------------------------------------------------------- 1 | Done. -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t3314-diagrams.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t3314.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t3448.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t3484.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t4324.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t4360.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t4676.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t4826-no-comments.check: -------------------------------------------------------------------------------- 1 | Done. -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t4826.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t4887.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t4922.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t5373.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t5533.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t5730.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t5780.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t5784.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t5933.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t5965.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t6140.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t6509.check: -------------------------------------------------------------------------------- 1 | Done. -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t6511.check: -------------------------------------------------------------------------------- 1 | Done. -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t6715.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t6812b.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t7367.check: -------------------------------------------------------------------------------- 1 | Done. -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t7767.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t7876.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t7905.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t8113.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t8210.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t8479.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t8557.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/test/scaladoc/run/t9620.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /sample-projects/scala/tools/jar-dump: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | 4 | jar tf "$1" | sort 5 | --------------------------------------------------------------------------------