├── .gitattributes ├── .gitignore ├── .gradle └── 2.1 │ └── taskArtifacts │ ├── cache.properties │ ├── cache.properties.lock │ ├── fileSnapshots.bin │ └── taskArtifacts.bin ├── .mailmap ├── .travis.yml ├── CONTRIBUTING.md ├── Gemfile ├── META-INF └── MANIFEST.MF ├── README.md ├── bincompat-backward.whitelist.conf ├── bincompat-forward.whitelist.conf ├── dbuild-meta.json ├── doc ├── LICENSE.md ├── License.rtf ├── README └── licenses │ ├── apache_jansi.txt │ ├── bsd_asm.txt │ ├── bsd_jline.txt │ ├── mit_jquery-layout.txt │ ├── mit_jquery-ui.txt │ ├── mit_jquery.txt │ ├── mit_sizzle.txt │ └── mit_tools.tooltip.txt ├── docs ├── TODO ├── development │ ├── jvm.txt │ └── scala.tools.nsc │ │ ├── nscNodes.dot │ │ └── nscTypes.dot ├── examples │ └── swing │ │ ├── ColorChooserDemo.scala │ │ └── PopupDemo.scala ├── svn-to-sha1-map.txt └── svn-to-sha1-missing.txt ├── gitconfig.SAMPLE ├── gitignore.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 ├── forkjoin.jar.desired.sha1 └── scala-library.zip ├── project ├── build.properties └── project │ └── Build.scala ├── pull-binary-libs.sh ├── push-binary-libs.sh ├── scala.iml ├── scripts ├── jobs │ └── scala-release-2.11.x-build ├── readproperties.awk └── repositories-scala-release ├── 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-implicit-parameters-and-views.md ├── 08-pattern-matching.md ├── 09-top-level-definitions.md ├── 10-xml-expressions-and-patterns.md ├── 11-user-defined-annotations.md ├── 12-the-scala-standard-library.md ├── 13-syntax-summary.md ├── 14-references.md ├── README.md ├── _config.yml ├── _includes │ └── numbering.css ├── _layouts │ ├── default.yml │ └── toc.yml ├── id_dsa_travis.enc ├── index.md └── public │ ├── favicon.ico │ ├── highlight │ ├── LICENSE │ └── highlight.pack.js │ ├── images │ ├── classhierarchy.pdf │ └── scala-logo-red-spiral-dark.png │ ├── octicons │ ├── LICENSE.txt │ ├── octicons.css │ ├── octicons.eot │ ├── octicons.svg │ ├── octicons.ttf │ └── octicons.woff │ ├── scripts │ └── navigation.js │ └── stylesheets │ ├── print.css │ └── screen.css ├── src ├── actors │ └── scala │ │ └── actors │ │ ├── AbstractActor.scala │ │ ├── Actor.scala │ │ ├── ActorCanReply.scala │ │ ├── ActorProxy.scala │ │ ├── ActorRef.scala │ │ ├── ActorTask.scala │ │ ├── CanReply.scala │ │ ├── Channel.scala │ │ ├── Combinators.scala │ │ ├── DaemonActor.scala │ │ ├── Debug.scala │ │ ├── Future.scala │ │ ├── IScheduler.scala │ │ ├── InputChannel.scala │ │ ├── InternalActor.scala │ │ ├── InternalReplyReactor.scala │ │ ├── KillActorControl.scala │ │ ├── LinkedNode.java │ │ ├── LinkedQueue.java │ │ ├── MQueue.scala │ │ ├── OutputChannel.scala │ │ ├── ReactChannel.scala │ │ ├── Reactor.scala │ │ ├── ReactorCanReply.scala │ │ ├── ReactorTask.scala │ │ ├── ReplyReactor.scala │ │ ├── ReplyReactorTask.scala │ │ ├── Scheduler.scala │ │ ├── SchedulerAdapter.scala │ │ ├── UncaughtException.scala │ │ ├── package.scala │ │ ├── remote │ │ ├── FreshNameCreator.scala │ │ ├── JavaSerializer.scala │ │ ├── NetKernel.scala │ │ ├── Proxy.scala │ │ ├── RemoteActor.scala │ │ ├── Serializer.scala │ │ ├── Service.scala │ │ └── TcpService.scala │ │ ├── scheduler │ │ ├── ActorGC.scala │ │ ├── DaemonScheduler.scala │ │ ├── DelegatingScheduler.scala │ │ ├── DrainableForkJoinPool.scala │ │ ├── ExecutorScheduler.scala │ │ ├── ForkJoinScheduler.scala │ │ ├── QuitControl.scala │ │ ├── ResizableThreadPoolScheduler.scala │ │ ├── SingleThreadedScheduler.scala │ │ ├── TerminationMonitor.scala │ │ ├── TerminationService.scala │ │ └── ThreadPoolConfig.scala │ │ └── threadpool │ │ ├── AbstractCollection.java │ │ ├── AbstractExecutorService.java │ │ ├── AbstractQueue.java │ │ ├── Arrays.java │ │ ├── AtomicInteger.java │ │ ├── BlockingQueue.java │ │ ├── Callable.java │ │ ├── CancellationException.java │ │ ├── CompletionService.java │ │ ├── ExecutionException.java │ │ ├── Executor.java │ │ ├── ExecutorCompletionService.java │ │ ├── ExecutorService.java │ │ ├── Executors.java │ │ ├── Future.java │ │ ├── FutureTask.java │ │ ├── LinkedBlockingQueue.java │ │ ├── Perf.java │ │ ├── Queue.java │ │ ├── RejectedExecutionException.java │ │ ├── RejectedExecutionHandler.java │ │ ├── RunnableFuture.java │ │ ├── SynchronousQueue.java │ │ ├── ThreadFactory.java │ │ ├── ThreadPoolExecutor.java │ │ ├── TimeUnit.java │ │ ├── TimeoutException.java │ │ ├── helpers │ │ ├── FIFOWaitQueue.java │ │ ├── NanoTimer.java │ │ ├── ThreadHelpers.java │ │ ├── Utils.java │ │ └── WaitQueue.java │ │ └── locks │ │ ├── CondVar.java │ │ ├── Condition.java │ │ ├── FIFOCondVar.java │ │ ├── Lock.java │ │ ├── ReadWriteLock.java │ │ ├── ReentrantLock.java │ │ └── ReentrantReadWriteLock.java ├── asm │ ├── README │ └── scala │ │ └── tools │ │ └── asm │ │ ├── AnnotationVisitor.java │ │ ├── AnnotationWriter.java │ │ ├── Attribute.java │ │ ├── ByteVector.java │ │ ├── ClassReader.java │ │ ├── ClassVisitor.java │ │ ├── ClassWriter.java │ │ ├── Context.java │ │ ├── CustomAttr.java │ │ ├── Edge.java │ │ ├── FieldVisitor.java │ │ ├── FieldWriter.java │ │ ├── Frame.java │ │ ├── Handle.java │ │ ├── Handler.java │ │ ├── Item.java │ │ ├── Label.java │ │ ├── MethodVisitor.java │ │ ├── MethodWriter.java │ │ ├── Opcodes.java │ │ ├── Type.java │ │ ├── TypePath.java │ │ ├── TypeReference.java │ │ ├── signature │ │ ├── SignatureReader.java │ │ ├── SignatureVisitor.java │ │ └── SignatureWriter.java │ │ ├── tree │ │ ├── AbstractInsnNode.java │ │ ├── AnnotationNode.java │ │ ├── ClassNode.java │ │ ├── FieldInsnNode.java │ │ ├── FieldNode.java │ │ ├── FrameNode.java │ │ ├── IincInsnNode.java │ │ ├── InnerClassNode.java │ │ ├── InsnList.java │ │ ├── InsnNode.java │ │ ├── IntInsnNode.java │ │ ├── InvokeDynamicInsnNode.java │ │ ├── JumpInsnNode.java │ │ ├── LabelNode.java │ │ ├── LdcInsnNode.java │ │ ├── LineNumberNode.java │ │ ├── LocalVariableAnnotationNode.java │ │ ├── LocalVariableNode.java │ │ ├── LookupSwitchInsnNode.java │ │ ├── MethodInsnNode.java │ │ ├── MethodNode.java │ │ ├── MultiANewArrayInsnNode.java │ │ ├── ParameterNode.java │ │ ├── TableSwitchInsnNode.java │ │ ├── TryCatchBlockNode.java │ │ ├── TypeAnnotationNode.java │ │ ├── TypeInsnNode.java │ │ ├── VarInsnNode.java │ │ └── analysis │ │ │ ├── Analyzer.java │ │ │ ├── AnalyzerException.java │ │ │ ├── BasicInterpreter.java │ │ │ ├── BasicValue.java │ │ │ ├── BasicVerifier.java │ │ │ ├── Frame.java │ │ │ ├── Interpreter.java │ │ │ ├── SimpleVerifier.java │ │ │ ├── SmallSet.java │ │ │ ├── SourceInterpreter.java │ │ │ ├── SourceValue.java │ │ │ ├── Subroutine.java │ │ │ └── Value.java │ │ └── util │ │ ├── ASMifiable.java │ │ ├── ASMifier.java │ │ ├── CheckAnnotationAdapter.java │ │ ├── CheckClassAdapter.java │ │ ├── CheckFieldAdapter.java │ │ ├── CheckMethodAdapter.java │ │ ├── CheckSignatureAdapter.java │ │ ├── Printer.java │ │ ├── Textifiable.java │ │ ├── Textifier.java │ │ ├── TraceAnnotationVisitor.java │ │ ├── TraceClassVisitor.java │ │ ├── TraceFieldVisitor.java │ │ ├── TraceMethodVisitor.java │ │ └── TraceSignatureVisitor.java ├── build │ ├── InnerObjectTestGen.scala │ ├── bnd │ │ ├── scala-actors.bnd │ │ ├── scala-compiler-doc.bnd │ │ ├── scala-compiler-interactive.bnd │ │ ├── scala-compiler.bnd │ │ ├── scala-continuations-library.bnd │ │ ├── scala-continuations-plugin.bnd │ │ ├── scala-library.bnd │ │ ├── scala-parser-combinators.bnd │ │ ├── scala-reflect.bnd │ │ ├── scala-swing.bnd │ │ └── scala-xml.bnd │ ├── dbuild-meta-json-gen.scala │ ├── genprod.scala │ └── maven │ │ ├── scala-actors-pom.xml │ │ ├── scala-compiler-doc-pom.xml │ │ ├── scala-compiler-interactive-pom.xml │ │ ├── scala-compiler-pom.xml │ │ ├── scala-dist-pom.xml │ │ ├── scala-library-all-pom.xml │ │ ├── scala-library-pom.xml │ │ ├── scala-reflect-pom.xml │ │ ├── scalap-pom.xml │ │ ├── subscript-akka-pom.xml │ │ ├── subscript-pom.xml │ │ └── subscript-swing-pom.xml ├── 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 │ │ ├── cmd │ │ ├── CommandLine.scala │ │ ├── CommandLineParser.scala │ │ ├── FromString.scala │ │ ├── Instance.scala │ │ ├── Interpolation.scala │ │ ├── Meta.scala │ │ ├── Opt.scala │ │ ├── Property.scala │ │ ├── Reference.scala │ │ ├── Spec.scala │ │ ├── gen │ │ │ ├── AnyVals.scala │ │ │ ├── Codegen.scala │ │ │ └── CodegenSpec.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 │ │ ├── SubScript.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 │ │ │ ├── WorklistAlgorithm.scala │ │ │ ├── icode │ │ │ │ ├── BasicBlocks.scala │ │ │ │ ├── CheckerException.scala │ │ │ │ ├── ExceptionHandlers.scala │ │ │ │ ├── GenICode.scala │ │ │ │ ├── ICodeCheckers.scala │ │ │ │ ├── ICodes.scala │ │ │ │ ├── Linearizers.scala │ │ │ │ ├── Members.scala │ │ │ │ ├── Opcodes.scala │ │ │ │ ├── Primitives.scala │ │ │ │ ├── Printers.scala │ │ │ │ ├── Repository.scala │ │ │ │ ├── TypeKinds.scala │ │ │ │ ├── TypeStacks.scala │ │ │ │ └── analysis │ │ │ │ │ ├── CopyPropagation.scala │ │ │ │ │ ├── DataFlowAnalysis.scala │ │ │ │ │ ├── Liveness.scala │ │ │ │ │ ├── LubException.scala │ │ │ │ │ ├── ProgramPoint.scala │ │ │ │ │ ├── ReachingDefinitions.scala │ │ │ │ │ ├── SemiLattice.scala │ │ │ │ │ └── TypeFlowAnalysis.scala │ │ │ ├── jvm │ │ │ │ ├── AsmUtils.scala │ │ │ │ ├── BCodeAsmCommon.scala │ │ │ │ ├── BCodeBodyBuilder.scala │ │ │ │ ├── BCodeHelpers.scala │ │ │ │ ├── BCodeICodeCommon.scala │ │ │ │ ├── BCodeIdiomatic.scala │ │ │ │ ├── BCodeSkelBuilder.scala │ │ │ │ ├── BCodeSyncAndTry.scala │ │ │ │ ├── BTypes.scala │ │ │ │ ├── BTypesFromSymbols.scala │ │ │ │ ├── BackendStats.scala │ │ │ │ ├── BytecodeWriters.scala │ │ │ │ ├── CoreBTypes.scala │ │ │ │ ├── GenASM.scala │ │ │ │ ├── GenBCode.scala │ │ │ │ └── opt │ │ │ │ │ ├── BytecodeUtils.scala │ │ │ │ │ └── LocalOpt.scala │ │ │ └── opt │ │ │ │ ├── ClosureElimination.scala │ │ │ │ ├── ConstantOptimization.scala │ │ │ │ ├── DeadCodeElimination.scala │ │ │ │ ├── InlineExceptionHandlers.scala │ │ │ │ └── Inliners.scala │ │ ├── classpath │ │ │ ├── AggregateFlatClassPath.scala │ │ │ ├── ClassPathFactory.scala │ │ │ ├── DirectoryFlatClassPath.scala │ │ │ ├── FileUtils.scala │ │ │ ├── FlatClassPath.scala │ │ │ ├── FlatClassPathFactory.scala │ │ │ ├── PackageNameUtils.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 │ │ ├── reporters │ │ │ ├── AbstractReporter.scala │ │ │ ├── ConsoleReporter.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 │ │ │ │ ├── ICodeReader.scala │ │ │ │ ├── Pickler.scala │ │ │ │ └── package.scala │ │ │ └── package.scala │ │ ├── transform │ │ │ ├── AddInterfaces.scala │ │ │ ├── CleanUp.scala │ │ │ ├── Constructors.scala │ │ │ ├── Delambdafy.scala │ │ │ ├── Erasure.scala │ │ │ ├── ExplicitOuter.scala │ │ │ ├── ExtensionMethods.scala │ │ │ ├── Flatten.scala │ │ │ ├── InfoTransform.scala │ │ │ ├── InlineErasure.scala │ │ │ ├── LambdaLift.scala │ │ │ ├── LazyVals.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 │ │ │ │ ├── PatternExpander.scala │ │ │ │ ├── PatternMatching.scala │ │ │ │ ├── ScalacPatternExpanders.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 │ │ │ ├── ClassFileLookup.scala │ │ │ ├── ClassPath.scala │ │ │ ├── DocStrings.scala │ │ │ ├── Exceptional.scala │ │ │ ├── InterruptReq.scala │ │ │ ├── JavaCharArrayReader.scala │ │ │ ├── ShowPickled.scala │ │ │ ├── SimpleTracer.scala │ │ │ ├── StackTracing.scala │ │ │ ├── StatisticsInfo.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 │ ├── README.md │ ├── asm │ │ ├── .classpath │ │ └── .project │ ├── continuations-library │ │ └── .project │ ├── interactive │ │ ├── .classpath │ │ └── .project │ ├── partest │ │ ├── .classpath │ │ └── .project │ ├── reflect │ │ ├── .classpath │ │ └── .project │ ├── repl │ │ ├── .classpath │ │ └── .project │ ├── scala-compiler │ │ ├── .classpath │ │ └── .project │ ├── scala-library │ │ ├── .classpath │ │ └── .project │ ├── scaladoc │ │ ├── .classpath │ │ └── .project │ ├── scalap │ │ ├── .classpath │ │ └── .project │ ├── subscript │ │ ├── .classpath │ │ └── .project │ └── test-junit │ │ ├── .classpath │ │ └── .project ├── ensime │ ├── .ensime.SAMPLE │ └── README.md ├── forkjoin │ └── scala │ │ └── concurrent │ │ ├── forkjoin │ │ ├── ForkJoinPool.java │ │ ├── ForkJoinTask.java │ │ ├── ForkJoinWorkerThread.java │ │ ├── LinkedTransferQueue.java │ │ ├── RecursiveAction.java │ │ ├── RecursiveTask.java │ │ ├── ThreadLocalRandom.java │ │ ├── TransferQueue.java │ │ └── package-info.java │ │ └── util │ │ └── Unsafe.java ├── intellij-14 │ ├── README │ ├── actors.iml.SAMPLE │ ├── asm.iml.SAMPLE │ ├── compiler.iml.SAMPLE │ ├── diff.sh │ ├── forkjoin.iml.SAMPLE │ ├── interactive.iml.SAMPLE │ ├── library.iml.SAMPLE │ ├── manual.iml.SAMPLE │ ├── partest-extras.iml.SAMPLE │ ├── partest-javaagent.iml.SAMPLE │ ├── reflect.iml.SAMPLE │ ├── repl.iml.SAMPLE │ ├── scala.iml.SAMPLE │ ├── scala.ipr.SAMPLE │ ├── scaladoc.iml.SAMPLE │ ├── scalap.iml.SAMPLE │ ├── setup.sh │ ├── test-junit.iml.SAMPLE │ ├── test.iml.SAMPLE │ └── update.sh ├── intellij │ ├── README │ ├── actors.iml.SAMPLE │ ├── asm.iml.SAMPLE │ ├── compiler.iml.SAMPLE │ ├── diff.sh │ ├── forkjoin.iml.SAMPLE │ ├── interactive.iml.SAMPLE │ ├── library.iml.SAMPLE │ ├── manual.iml.SAMPLE │ ├── partest-extras.iml.SAMPLE │ ├── partest-javaagent.iml.SAMPLE │ ├── reflect.iml.SAMPLE │ ├── repl.iml.SAMPLE │ ├── scala-lang.ipr.SAMPLE │ ├── scala.iml.SAMPLE │ ├── scaladoc.iml.SAMPLE │ ├── scalap.iml.SAMPLE │ ├── setup.sh │ ├── test-junit.iml.SAMPLE │ ├── test.iml.SAMPLE │ ├── test │ │ └── files │ │ │ ├── neg │ │ │ ├── virtpatmat_exhaust_big.check │ │ │ ├── virtpatmat_exhaust_big.flags │ │ │ └── virtpatmat_exhaust_big.scala │ │ │ └── pos │ │ │ └── virtpatmat_exhaust_big.scala │ └── update.sh ├── 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 ├── jline │ └── target │ │ ├── resolution-cache │ │ ├── org.scala-lang │ │ │ └── jline_2.9.2 │ │ │ │ └── 2.10.0-SNAPSHOT │ │ │ │ ├── resolved.xml.properties │ │ │ │ └── resolved.xml.xml │ │ └── reports │ │ │ └── org.scala-lang-jline_2.9.2 │ │ │ ├── compile-internal-resolved.xml │ │ │ ├── compile-resolved.xml │ │ │ ├── docs-resolved.xml │ │ │ ├── ivy-report.css │ │ │ ├── ivy-report.xsl │ │ │ ├── optional-resolved.xml │ │ │ ├── plugin-resolved.xml │ │ │ ├── pom-resolved.xml │ │ │ ├── provided-resolved.xml │ │ │ ├── runtime-internal-resolved.xml │ │ │ ├── runtime-resolved.xml │ │ │ ├── sources-resolved.xml │ │ │ ├── test-internal-resolved.xml │ │ │ └── test-resolved.xml │ │ ├── scala-2.9.2 │ │ ├── cache │ │ │ └── jline │ │ │ │ ├── compile │ │ │ │ ├── copy-resources │ │ │ │ └── inc_compile │ │ │ │ └── global │ │ │ │ └── update │ │ │ │ ├── inputs │ │ │ │ └── output │ │ └── classes │ │ │ └── scala │ │ │ └── tools │ │ │ └── jline │ │ │ ├── AnsiWindowsTerminal.class │ │ │ ├── NoInterruptUnixTerminal.class │ │ │ ├── Terminal.class │ │ │ ├── TerminalFactory$Flavor.class │ │ │ ├── TerminalFactory$Type.class │ │ │ ├── TerminalFactory.class │ │ │ ├── TerminalSupport$RestoreHook.class │ │ │ ├── TerminalSupport.class │ │ │ ├── UnixTerminal$UnixKey.class │ │ │ ├── UnixTerminal.class │ │ │ ├── UnsupportedTerminal.class │ │ │ ├── WindowsTerminal$1.class │ │ │ ├── WindowsTerminal$ConsoleMode.class │ │ │ ├── WindowsTerminal$WindowsKey.class │ │ │ ├── WindowsTerminal.class │ │ │ ├── console │ │ │ ├── ConsoleReader$1.class │ │ │ ├── ConsoleReader$2.class │ │ │ ├── ConsoleReader.class │ │ │ ├── CursorBuffer.class │ │ │ ├── Key.class │ │ │ ├── Operation.class │ │ │ ├── completer │ │ │ │ ├── AggregateCompleter$Completion.class │ │ │ │ ├── AggregateCompleter.class │ │ │ │ ├── ArgumentCompleter$AbstractArgumentDelimiter.class │ │ │ │ ├── ArgumentCompleter$ArgumentDelimiter.class │ │ │ │ ├── ArgumentCompleter$ArgumentList.class │ │ │ │ ├── ArgumentCompleter$WhitespaceArgumentDelimiter.class │ │ │ │ ├── ArgumentCompleter.class │ │ │ │ ├── CandidateListCompletionHandler$Messages.class │ │ │ │ ├── CandidateListCompletionHandler.class │ │ │ │ ├── CandidateListCompletionHandler.properties │ │ │ │ ├── Completer.class │ │ │ │ ├── CompletionHandler.class │ │ │ │ ├── EnumCompleter.class │ │ │ │ ├── FileNameCompleter.class │ │ │ │ ├── NullCompleter.class │ │ │ │ └── StringsCompleter.class │ │ │ └── history │ │ │ │ ├── FileHistory.class │ │ │ │ ├── History$Entry.class │ │ │ │ ├── History.class │ │ │ │ ├── MemoryHistory$1.class │ │ │ │ ├── MemoryHistory$EntriesIterator.class │ │ │ │ ├── MemoryHistory$EntryImpl.class │ │ │ │ ├── MemoryHistory.class │ │ │ │ └── PersistentHistory.class │ │ │ ├── internal │ │ │ ├── Configuration.class │ │ │ ├── Log$Level.class │ │ │ ├── Log.class │ │ │ ├── ReplayPrefixOneCharInputStream.class │ │ │ └── TerminalLineSettings.class │ │ │ ├── keybindings.properties │ │ │ └── windowsbindings.properties │ │ └── streams │ │ ├── $global │ │ ├── compilers │ │ │ └── $global │ │ │ │ └── out │ │ ├── ivy-configuration │ │ │ └── $global │ │ │ │ └── out │ │ ├── ivy-sbt │ │ │ └── $global │ │ │ │ └── out │ │ ├── project-descriptors │ │ │ └── $global │ │ │ │ └── out │ │ └── update │ │ │ └── $global │ │ │ └── out │ │ └── compile │ │ ├── $global │ │ └── $global │ │ │ └── data │ │ ├── compile-inputs │ │ └── $global │ │ │ └── out │ │ ├── compile │ │ └── $global │ │ │ └── out │ │ └── copy-resources │ │ └── $global │ │ └── out ├── library-aux │ ├── README │ └── scala │ │ ├── Any.scala │ │ ├── AnyRef.scala │ │ ├── Nothing.scala │ │ └── Null.scala ├── library │ ├── library.properties │ ├── 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 │ │ ├── NotNull.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 │ │ ├── Responder.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── CustomParallelizable.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 │ │ ├── Parallelizable.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 │ │ │ ├── DecorateAsJava.scala │ │ │ ├── DecorateAsScala.scala │ │ │ ├── Decorators.scala │ │ │ ├── WrapAsJava.scala │ │ │ ├── WrapAsScala.scala │ │ │ ├── Wrappers.scala │ │ │ └── package.scala │ │ ├── generic │ │ │ ├── BitOperations.scala │ │ │ ├── BitSetFactory.scala │ │ │ ├── CanBuildFrom.scala │ │ │ ├── CanCombineFrom.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 │ │ │ ├── GenericParCompanion.scala │ │ │ ├── GenericParTemplate.scala │ │ │ ├── GenericSeqCompanion.scala │ │ │ ├── GenericSetTemplate.scala │ │ │ ├── GenericTraversableTemplate.scala │ │ │ ├── Growable.scala │ │ │ ├── HasNewBuilder.scala │ │ │ ├── HasNewCombiner.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 │ │ │ ├── MutableSortedSetFactory.scala │ │ │ ├── OrderedTraversableFactory.scala │ │ │ ├── ParFactory.scala │ │ │ ├── ParMapFactory.scala │ │ │ ├── ParSetFactory.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 │ │ │ ├── AVLTree.scala │ │ │ ├── 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 │ │ │ ├── PriorityQueueProxy.scala │ │ │ ├── Publisher.scala │ │ │ ├── Queue.scala │ │ │ ├── QueueProxy.scala │ │ │ ├── ResizableArray.scala │ │ │ ├── RevertibleHistory.scala │ │ │ ├── Seq.scala │ │ │ ├── SeqLike.scala │ │ │ ├── Set.scala │ │ │ ├── SetBuilder.scala │ │ │ ├── SetLike.scala │ │ │ ├── SetProxy.scala │ │ │ ├── SortedSet.scala │ │ │ ├── Stack.scala │ │ │ ├── StackProxy.scala │ │ │ ├── StringBuilder.scala │ │ │ ├── Subscriber.scala │ │ │ ├── SynchronizedBuffer.scala │ │ │ ├── SynchronizedMap.scala │ │ │ ├── SynchronizedPriorityQueue.scala │ │ │ ├── SynchronizedQueue.scala │ │ │ ├── SynchronizedSet.scala │ │ │ ├── SynchronizedStack.scala │ │ │ ├── Traversable.scala │ │ │ ├── TreeSet.scala │ │ │ ├── Undoable.scala │ │ │ ├── UnrolledBuffer.scala │ │ │ ├── WeakHashMap.scala │ │ │ ├── WrappedArray.scala │ │ │ └── WrappedArrayBuilder.scala │ │ ├── package.scala │ │ ├── parallel │ │ │ ├── Combiner.scala │ │ │ ├── ParIterable.scala │ │ │ ├── ParIterableLike.scala │ │ │ ├── ParMap.scala │ │ │ ├── ParMapLike.scala │ │ │ ├── ParSeq.scala │ │ │ ├── ParSeqLike.scala │ │ │ ├── ParSet.scala │ │ │ ├── ParSetLike.scala │ │ │ ├── PreciseSplitter.scala │ │ │ ├── RemainsIterator.scala │ │ │ ├── Splitter.scala │ │ │ ├── TaskSupport.scala │ │ │ ├── Tasks.scala │ │ │ ├── immutable │ │ │ │ ├── ParHashMap.scala │ │ │ │ ├── ParHashSet.scala │ │ │ │ ├── ParIterable.scala │ │ │ │ ├── ParMap.scala │ │ │ │ ├── ParRange.scala │ │ │ │ ├── ParSeq.scala │ │ │ │ ├── ParSet.scala │ │ │ │ ├── ParVector.scala │ │ │ │ └── package.scala │ │ │ ├── mutable │ │ │ │ ├── LazyCombiner.scala │ │ │ │ ├── ParArray.scala │ │ │ │ ├── ParFlatHashTable.scala │ │ │ │ ├── ParHashMap.scala │ │ │ │ ├── ParHashSet.scala │ │ │ │ ├── ParHashTable.scala │ │ │ │ ├── ParIterable.scala │ │ │ │ ├── ParMap.scala │ │ │ │ ├── ParMapLike.scala │ │ │ │ ├── ParSeq.scala │ │ │ │ ├── ParSet.scala │ │ │ │ ├── ParSetLike.scala │ │ │ │ ├── ParTrieMap.scala │ │ │ │ ├── ResizableParArrayCombiner.scala │ │ │ │ ├── UnrolledParArrayCombiner.scala │ │ │ │ └── package.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 │ │ ├── FutureTaskRunner.scala │ │ ├── JavaConversions.scala │ │ ├── Lock.scala │ │ ├── ManagedBlocker.scala │ │ ├── Promise.scala │ │ ├── SyncChannel.scala │ │ ├── SyncVar.scala │ │ ├── TaskRunner.scala │ │ ├── ThreadPoolRunner.scala │ │ ├── duration │ │ │ ├── Deadline.scala │ │ │ ├── Duration.scala │ │ │ ├── DurationConversions.scala │ │ │ └── package.scala │ │ ├── impl │ │ │ ├── AbstractPromise.java │ │ │ ├── ExecutionContextImpl.scala │ │ │ ├── Future.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 │ │ ├── ArrayRuntime.java │ │ ├── BooleanRef.java │ │ ├── Boxed.scala │ │ ├── BoxedUnit.java │ │ ├── BoxesRunTime.java │ │ ├── ByteRef.java │ │ ├── CharRef.java │ │ ├── DoubleRef.java │ │ ├── FloatRef.java │ │ ├── IntRef.java │ │ ├── LongRef.java │ │ ├── MethodCache.scala │ │ ├── NonLocalReturnControl.scala │ │ ├── Nothing$.scala │ │ ├── Null$.scala │ │ ├── ObjectRef.java │ │ ├── RichBoolean.scala │ │ ├── RichByte.scala │ │ ├── RichChar.scala │ │ ├── RichDouble.scala │ │ ├── RichException.scala │ │ ├── RichFloat.scala │ │ ├── RichInt.scala │ │ ├── RichLong.scala │ │ ├── RichShort.scala │ │ ├── ScalaNumberProxy.scala │ │ ├── ScalaRunTime.scala │ │ ├── SeqCharSequence.scala │ │ ├── ShortRef.java │ │ ├── Statics.java │ │ ├── StringAdd.scala │ │ ├── StringFormat.scala │ │ ├── TraitSetter.java │ │ ├── Tuple2Zipped.scala │ │ ├── Tuple3Zipped.scala │ │ ├── VolatileBooleanRef.java │ │ ├── VolatileByteRef.java │ │ ├── VolatileCharRef.java │ │ ├── VolatileDoubleRef.java │ │ ├── VolatileFloatRef.java │ │ ├── VolatileIntRef.java │ │ ├── VolatileLongRef.java │ │ ├── VolatileObjectRef.java │ │ ├── VolatileShortRef.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 │ │ ├── ReplTest.scala │ │ ├── ScriptTest.scala │ │ ├── SigTest.scala │ │ ├── Util.scala │ │ └── instrumented │ │ ├── Instrumentation.scala │ │ └── Profiler.java ├── partest-javaagent │ └── scala │ │ └── tools │ │ └── partest │ │ └── javaagent │ │ ├── ASMTransformer.java │ │ ├── MANIFEST.MF │ │ ├── ProfilerVisitor.java │ │ └── ProfilingAgent.java ├── reflect │ └── 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 │ │ │ ├── RefChecks.scala │ │ │ ├── Transforms.scala │ │ │ └── UnCurry.scala │ │ └── util │ │ │ ├── AbstractFileClassLoader.scala │ │ │ ├── Collections.scala │ │ │ ├── FreshNameCreator.scala │ │ │ ├── HashSet.scala │ │ │ ├── Origins.scala │ │ │ ├── Position.scala │ │ │ ├── ScalaClassLoader.scala │ │ │ ├── Set.scala │ │ │ ├── SourceFile.scala │ │ │ ├── Statistics.scala │ │ │ ├── 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 │ └── scala │ │ └── tools │ │ └── nsc │ │ ├── Interpreter.scala │ │ ├── InterpreterLoop.scala │ │ ├── MainGenericRunner.scala │ │ └── interpreter │ │ ├── AbstractFileClassLoader.scala │ │ ├── AbstractOrMissingHandler.scala │ │ ├── CommandLine.scala │ │ ├── Completion.scala │ │ ├── CompletionAware.scala │ │ ├── CompletionOutput.scala │ │ ├── ConsoleReaderHelper.scala │ │ ├── Delimited.scala │ │ ├── ExprTyper.scala │ │ ├── Formatting.scala │ │ ├── IBindings.java │ │ ├── ILoop.scala │ │ ├── IMain.scala │ │ ├── ISettings.scala │ │ ├── Imports.scala │ │ ├── InteractiveReader.scala │ │ ├── JLineCompletion.scala │ │ ├── JLineReader.scala │ │ ├── JavapClass.scala │ │ ├── Logger.scala │ │ ├── LoopCommands.scala │ │ ├── MemberHandlers.scala │ │ ├── NamedParam.scala │ │ ├── Naming.scala │ │ ├── Parsed.scala │ │ ├── Pasted.scala │ │ ├── Phased.scala │ │ ├── Power.scala │ │ ├── ReplConfig.scala │ │ ├── ReplDir.scala │ │ ├── ReplGlobal.scala │ │ ├── ReplProps.scala │ │ ├── ReplReporter.scala │ │ ├── ReplStrings.scala │ │ ├── ReplVals.scala │ │ ├── Results.scala │ │ ├── RichClass.scala │ │ ├── SimpleReader.scala │ │ ├── StdReplTags.scala │ │ ├── package.scala │ │ └── session │ │ ├── FileBackedHistory.scala │ │ ├── History.scala │ │ ├── JLineHistory.scala │ │ ├── SimpleHistory.scala │ │ └── package.scala ├── scala.iml ├── 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 │ │ │ ├── Indexer.scala │ │ │ └── Universer.scala │ │ │ ├── html │ │ │ ├── Doclet.scala │ │ │ ├── HtmlFactory.scala │ │ │ ├── HtmlPage.scala │ │ │ ├── Page.scala │ │ │ ├── SyntaxHigh.scala │ │ │ ├── page │ │ │ │ ├── Index.scala │ │ │ │ ├── IndexScript.scala │ │ │ │ ├── ReferenceIndex.scala │ │ │ │ ├── Source.scala │ │ │ │ ├── Template.scala │ │ │ │ └── diagram │ │ │ │ │ ├── DiagramGenerator.scala │ │ │ │ │ ├── DiagramStats.scala │ │ │ │ │ ├── DotDiagramGenerator.scala │ │ │ │ │ └── DotRunner.scala │ │ │ └── resource │ │ │ │ └── lib │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── class.png │ │ │ │ ├── class_big.png │ │ │ │ ├── class_diagram.png │ │ │ │ ├── class_to_object_big.png │ │ │ │ ├── constructorsbg.gif │ │ │ │ ├── conversionbg.gif │ │ │ │ ├── defbg-blue.gif │ │ │ │ ├── defbg-green.gif │ │ │ │ ├── diagrams.css │ │ │ │ ├── diagrams.js │ │ │ │ ├── filter_box_left.png │ │ │ │ ├── filter_box_left.psd │ │ │ │ ├── filter_box_left2.gif │ │ │ │ ├── filter_box_right.png │ │ │ │ ├── filter_box_right.psd │ │ │ │ ├── filterbg.gif │ │ │ │ ├── filterboxbarbg.gif │ │ │ │ ├── filterboxbarbg.png │ │ │ │ ├── filterboxbg.gif │ │ │ │ ├── fullcommenttopbg.gif │ │ │ │ ├── index.css │ │ │ │ ├── index.js │ │ │ │ ├── jquery-ui.js │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.layout.js │ │ │ │ ├── modernizr.custom.js │ │ │ │ ├── navigation-li-a.png │ │ │ │ ├── navigation-li.png │ │ │ │ ├── object.png │ │ │ │ ├── object_big.png │ │ │ │ ├── object_diagram.png │ │ │ │ ├── object_to_class_big.png │ │ │ │ ├── object_to_trait_big.png │ │ │ │ ├── object_to_type_big.png │ │ │ │ ├── ownderbg2.gif │ │ │ │ ├── ownerbg.gif │ │ │ │ ├── ownerbg2.gif │ │ │ │ ├── package.png │ │ │ │ ├── package_big.png │ │ │ │ ├── packagesbg.gif │ │ │ │ ├── permalink.png │ │ │ │ ├── raphael-min.js │ │ │ │ ├── ref-index.css │ │ │ │ ├── remove.png │ │ │ │ ├── remove.psd │ │ │ │ ├── scheduler.js │ │ │ │ ├── selected-implicits.png │ │ │ │ ├── selected-right-implicits.png │ │ │ │ ├── selected-right.png │ │ │ │ ├── selected.png │ │ │ │ ├── selected2-right.png │ │ │ │ ├── selected2.png │ │ │ │ ├── signaturebg.gif │ │ │ │ ├── signaturebg2.gif │ │ │ │ ├── template.css │ │ │ │ ├── template.js │ │ │ │ ├── tools.tooltip.js │ │ │ │ ├── trait.png │ │ │ │ ├── trait_big.png │ │ │ │ ├── trait_diagram.png │ │ │ │ ├── trait_to_object_big.png │ │ │ │ ├── type.png │ │ │ │ ├── type_big.png │ │ │ │ ├── type_diagram.png │ │ │ │ ├── type_tags.ai │ │ │ │ ├── type_to_object_big.png │ │ │ │ ├── typebg.gif │ │ │ │ ├── unselected.png │ │ │ │ ├── valuemembersbg.gif │ │ │ │ └── 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 │ │ └── partest │ │ └── ScaladocModelTest.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 ├── subscript-akka │ ├── build.abt │ ├── src │ │ ├── SubScriptActor.scala │ │ └── SubScriptActorRunner.scala │ └── subscript-akka.iml ├── subscript-supplements │ ├── bin │ │ └── dummy │ ├── build.abt │ ├── src │ │ ├── exercises │ │ │ ├── Interact.scala │ │ │ ├── SliderDemo.scala │ │ │ └── TVNoiseDemo.scala │ │ └── test │ │ │ ├── OperatorsSuite.scala │ │ │ └── Test.scala │ └── subscript-supplements.iml ├── subscript-swing │ ├── build.abt │ ├── src │ │ ├── swing │ │ │ ├── GraphicalDebugger.scala │ │ │ ├── PureScalaDebugger.scala │ │ │ ├── Scripts.scala │ │ │ └── SubScriptDebugger.scala │ │ └── swing_old │ │ │ └── Scripts.scala.old │ └── subscript-swing.iml └── subscript │ └── subscript │ ├── DSL.scala │ ├── Predef.scala │ └── vm │ ├── CallGraphMessage.scala │ ├── CodeExecutor.scala │ ├── Data.scala │ ├── MsgListener.scala │ ├── SimpleScriptDebugger.scala │ ├── executor │ ├── ScriptExecutor.scala │ ├── data │ │ ├── CallGraph.scala │ │ ├── MessageHandlers.scala │ │ ├── MessageQueue.scala │ │ └── SafeMutableState.scala │ └── parts │ │ ├── ContinuationHandler.scala │ │ ├── DefaultHandlers.scala │ │ ├── DefaultListeners.scala │ │ ├── TaskSupplyInterface.scala │ │ └── Tracer.scala │ └── model │ ├── callgraph │ ├── CallGraph.scala │ ├── Constants.scala │ ├── Graph.scala │ ├── concrete │ │ ├── ActionOperands.scala │ │ ├── Communication.scala │ │ ├── Operators.scala │ │ ├── Roots.scala │ │ ├── SpecialOperands.scala │ │ └── Variables.scala │ └── generic │ │ ├── ChildrenState.scala │ │ ├── Container.scala │ │ ├── Engine.scala │ │ ├── ExecutionResult.scala │ │ ├── GraphNavigation.scala │ │ ├── Informational.scala │ │ ├── ListenableNode.scala │ │ ├── OldApi.scala │ │ ├── OptionalChildrenState.scala │ │ ├── State.scala │ │ └── Variables.scala │ └── template │ ├── OldApi.scala │ ├── TemplateNodes.scala │ ├── TreeNodes.scala │ └── concrete │ ├── ActionOperands.scala │ ├── Operators.scala │ ├── Roots.scala │ ├── SpecialOperands.scala │ └── Variables.scala ├── test ├── ant │ └── test-basic │ │ ├── build.xml │ │ └── src │ │ └── test-1.scala ├── benchmarking │ ├── AVL-insert-random.scala │ ├── AVL-insert.scala │ ├── ParCtrie-bfs.scala │ ├── ParCtrie-map.scala │ ├── ParCtrie-nums.scala │ ├── ParCtrie-size.scala │ ├── ParHashMap.scala │ ├── ParVector-reduce.scala │ ├── TreeSetInsert.scala │ ├── TreeSetInsertRandom.scala │ ├── TreeSetIterator.scala │ ├── TreeSetRemove.scala │ ├── TreeSetRemoveRandom.scala │ └── t6726-patmat-analysis.scala ├── benchmarks │ ├── bench │ ├── lib │ │ └── jsr166_and_extra.jar.desired.sha1 │ ├── source.list │ └── src │ │ └── scala │ │ ├── collection │ │ ├── immutable │ │ │ └── range-bench.scala │ │ ├── mutable │ │ │ └── hashtable-bench.scala │ │ └── parallel │ │ │ ├── Benchmarking.scala │ │ │ └── benchmarks │ │ │ ├── Bench.scala │ │ │ ├── arrays │ │ │ ├── Arrays.scala │ │ │ ├── Dummy.scala │ │ │ ├── IntAccess.scala │ │ │ ├── ObjectAccess.scala │ │ │ ├── Resetting.scala │ │ │ └── UnknownManif.scala │ │ │ ├── generic │ │ │ ├── Dummy.scala │ │ │ ├── Operators.scala │ │ │ └── ParallelBenches.scala │ │ │ ├── hashtables │ │ │ ├── ParallelHashTableSets.scala │ │ │ └── ParallelHashTables.scala │ │ │ ├── hashtries │ │ │ ├── Combine.scala │ │ │ ├── Construct.scala │ │ │ ├── Foreach.scala │ │ │ ├── IntInit.scala │ │ │ ├── Iterate.scala │ │ │ ├── Lookup.scala │ │ │ ├── MultipleCombine.scala │ │ │ └── ParallelHashTries.scala │ │ │ ├── misc │ │ │ ├── Coder.scala │ │ │ ├── Dictionary.scala │ │ │ ├── Loader.scala │ │ │ └── dict.txt │ │ │ ├── parallel_array │ │ │ ├── AggregateLight.scala │ │ │ ├── Companion.scala │ │ │ ├── CopyToArray.scala │ │ │ ├── Corresponds.scala │ │ │ ├── CountHeavy.scala │ │ │ ├── CountLight.scala │ │ │ ├── CountList.scala │ │ │ ├── DiffHalf.scala │ │ │ ├── DropMany.scala │ │ │ ├── ExistsLight.scala │ │ │ ├── FilterLight.scala │ │ │ ├── FindLight.scala │ │ │ ├── FlatMapLight.scala │ │ │ ├── ForallHeavy.scala │ │ │ ├── ForallLight.scala │ │ │ ├── ForallQuickStop.scala │ │ │ ├── ForallStop80k.scala │ │ │ ├── ForeachHeavy.scala │ │ │ ├── ForeachLight.scala │ │ │ ├── GroupBy.scala │ │ │ ├── IndexWhere.scala │ │ │ ├── IntersectHalf.scala │ │ │ ├── LastIndexWhere.scala │ │ │ ├── MapLight.scala │ │ │ ├── MatrixMultiplication.scala │ │ │ ├── MinLight.scala │ │ │ ├── PadToDouble.scala │ │ │ ├── PartialMapLight.scala │ │ │ ├── PartitionLight.scala │ │ │ ├── PatchHalf.scala │ │ │ ├── PlusPlus.scala │ │ │ ├── ReduceHeavy.scala │ │ │ ├── ReduceLight.scala │ │ │ ├── ReduceList.scala │ │ │ ├── ReduceNew.scala │ │ │ ├── ReducePrime.scala │ │ │ ├── RemoveDuplicates.scala │ │ │ ├── Resettable.scala │ │ │ ├── Reverse.scala │ │ │ ├── ReverseMap.scala │ │ │ ├── SameElementsLong.scala │ │ │ ├── ScanLight.scala │ │ │ ├── ScanMedium.scala │ │ │ ├── SegmentLength.scala │ │ │ ├── SequentialOps.scala │ │ │ ├── SliceFew.scala │ │ │ ├── SliceMany.scala │ │ │ ├── SliceMedium.scala │ │ │ ├── SpanLight.scala │ │ │ ├── SplitHalf.scala │ │ │ ├── SumLight.scala │ │ │ ├── TakeMany.scala │ │ │ └── TakeWhileLight.scala │ │ │ ├── parallel_range │ │ │ └── RangeBenches.scala │ │ │ └── parallel_view │ │ │ └── SeqViewBenches.scala │ │ └── util │ │ └── HashSpeedTest.scala ├── checker-tests │ ├── fail1.scala │ ├── fail10.scala │ ├── fail12.scala │ ├── fail2.scala │ ├── fail6.scala │ └── fail7.scala ├── debug │ ├── OBSOLETE │ ├── buildmanager │ │ └── .gitignore │ ├── jvm │ │ └── .gitignore │ ├── neg │ │ └── .gitignore │ ├── pos │ │ └── .gitignore │ ├── res │ │ └── .gitignore │ ├── run │ │ └── .gitignore │ ├── scalacheck │ │ └── .gitignore │ ├── scalap │ │ └── .gitignore │ └── shootout │ │ └── .gitignore ├── disabled-windows │ └── script │ │ ├── loadAndExecute.check │ │ ├── loadAndExecute │ │ ├── lAndE1.scala │ │ ├── lAndE2.scala │ │ └── loadAndExecute.scala │ │ ├── utf8.bat │ │ ├── utf8.check │ │ └── utf8.scala ├── disabled │ ├── buildmanager │ │ ├── overloaded_1 │ │ │ ├── A.scala │ │ │ ├── overloaded_1.check │ │ │ └── overloaded_1.test │ │ ├── t2651_1 │ │ │ ├── A.scala │ │ │ ├── B.scala │ │ │ ├── C.scala │ │ │ ├── D.scala │ │ │ ├── t2651_1.changes │ │ │ │ └── A2.scala │ │ │ ├── t2651_1.check │ │ │ └── t2651_1.test │ │ ├── t2652 │ │ │ ├── A.scala │ │ │ ├── B.scala │ │ │ ├── t2652.changes │ │ │ │ └── A2.scala │ │ │ ├── t2652.check │ │ │ └── t2652.test │ │ └── t4245 │ │ │ ├── A.scala │ │ │ ├── t4245.check │ │ │ └── t4245.test │ ├── coder │ │ ├── Coder.scala │ │ ├── Dictionary.scala │ │ └── dict.txt │ ├── jvm │ │ ├── JavaInteraction.check │ │ ├── JavaInteraction.scala │ │ ├── concurrent-future.check │ │ └── concurrent-future.scala │ ├── neg │ │ ├── abstract-report3.check │ │ └── abstract-report3.scala │ ├── pos │ │ ├── caseclass-parents.flags │ │ ├── caseclass-parents.scala │ │ ├── caseclass-productN.flags │ │ ├── caseclass-productN.scala │ │ ├── spec-List.scala │ │ ├── t1545.scala │ │ ├── t1737 │ │ │ ├── A.java │ │ │ ├── B.java │ │ │ └── c.scala │ │ └── t2919.scala │ ├── presentation │ │ ├── akka.check │ │ ├── akka.flags │ │ ├── akka │ │ │ ├── Runner.scala │ │ │ └── src │ │ │ │ ├── akka │ │ │ │ ├── AkkaException.scala │ │ │ │ ├── actor │ │ │ │ │ ├── Actor.scala │ │ │ │ │ ├── ActorRef.scala │ │ │ │ │ ├── ActorRegistry.scala │ │ │ │ │ ├── Actors.java │ │ │ │ │ ├── BootableActorLoaderService.scala │ │ │ │ │ ├── FSM.scala │ │ │ │ │ ├── Scheduler.scala │ │ │ │ │ ├── Supervisor.scala │ │ │ │ │ ├── UntypedActor.scala │ │ │ │ │ └── package.scala │ │ │ │ ├── config │ │ │ │ │ ├── Config.scala │ │ │ │ │ ├── ConfigParser.scala │ │ │ │ │ ├── Configuration.scala │ │ │ │ │ ├── Configurator.scala │ │ │ │ │ ├── Importer.scala │ │ │ │ │ └── SupervisionConfig.scala │ │ │ │ ├── dataflow │ │ │ │ │ └── DataFlow.scala │ │ │ │ ├── dispatch │ │ │ │ │ ├── Dispatchers.scala │ │ │ │ │ ├── ExecutorBasedEventDrivenDispatcher.scala │ │ │ │ │ ├── ExecutorBasedEventDrivenWorkStealingDispatcher.scala │ │ │ │ │ ├── MailboxHandling.scala │ │ │ │ │ ├── MessageHandling.scala │ │ │ │ │ ├── ThreadBasedDispatcher.scala │ │ │ │ │ └── ThreadPoolBuilder.scala │ │ │ │ ├── event │ │ │ │ │ ├── EventHandler.scala │ │ │ │ │ └── JavaEventHandler.java │ │ │ │ ├── japi │ │ │ │ │ └── JavaAPI.scala │ │ │ │ ├── remoteinterface │ │ │ │ │ ├── RemoteEventHandler.scala │ │ │ │ │ └── RemoteInterface.scala │ │ │ │ ├── routing │ │ │ │ │ ├── Iterators.scala │ │ │ │ │ ├── Listeners.scala │ │ │ │ │ ├── Pool.scala │ │ │ │ │ ├── Routers.scala │ │ │ │ │ └── Routing.scala │ │ │ │ └── util │ │ │ │ │ ├── Address.scala │ │ │ │ │ ├── AkkaLoader.scala │ │ │ │ │ ├── Bootable.scala │ │ │ │ │ ├── BoundedBlockingQueue.scala │ │ │ │ │ ├── Crypt.scala │ │ │ │ │ ├── Duration.scala │ │ │ │ │ ├── HashCode.scala │ │ │ │ │ ├── Helpers.scala │ │ │ │ │ ├── ListenerManagement.scala │ │ │ │ │ ├── LockUtil.scala │ │ │ │ │ ├── ReflectiveAccess.scala │ │ │ │ │ └── package.scala │ │ │ │ └── com │ │ │ │ └── eaio │ │ │ │ ├── util │ │ │ │ └── lang │ │ │ │ │ └── Hex.java │ │ │ │ └── uuid │ │ │ │ ├── MACAddressParser.java │ │ │ │ ├── UUID.java │ │ │ │ ├── UUIDGen.java │ │ │ │ ├── UUIDHelper.java │ │ │ │ └── UUIDHolder.java │ │ ├── ide-bug-1000450 │ │ │ ├── Runner.scala │ │ │ └── src │ │ │ │ └── Ranges.scala │ │ ├── ide-bug-1000508.check │ │ ├── ide-bug-1000508 │ │ │ ├── Runner.scala │ │ │ └── src │ │ │ │ └── Foo.scala │ │ ├── ide-bug-1000545 │ │ │ ├── Runner.scala │ │ │ └── src │ │ │ │ └── CompletionFails.scala │ │ ├── ide-t1000620.check │ │ ├── ide-t1000620 │ │ │ ├── Runner.scala │ │ │ └── src │ │ │ │ ├── a │ │ │ │ └── A.scala │ │ │ │ └── b │ │ │ │ └── B.scala │ │ ├── shutdown-deadlock.check │ │ ├── shutdown-deadlock │ │ │ ├── ShutdownDeadlockTest.scala │ │ │ └── src │ │ │ │ └── arrays.scala │ │ ├── simple-tests.check │ │ ├── simple-tests.javaopts │ │ ├── simple-tests.opts │ │ ├── simple-tests │ │ │ ├── SimpleInteractiveTest.scala │ │ │ └── src │ │ │ │ └── Tester.scala │ │ ├── timeofday.check │ │ └── timeofday │ │ │ ├── Runner.scala │ │ │ └── src │ │ │ └── timeofday.scala │ ├── properties.check │ ├── properties │ │ ├── Runner.scala │ │ └── src │ │ │ └── properties.scala │ ├── run │ │ ├── applet-prop.scala │ │ ├── coder2 │ │ │ ├── Coder2.scala │ │ │ └── Dictionary.scala │ │ ├── docgenerator.check │ │ ├── docgenerator.scala │ │ ├── javap.check │ │ ├── javap.scala │ │ ├── lisp.check │ │ ├── lisp.scala │ │ ├── script-positions.scala │ │ ├── syncchannel.check │ │ ├── syncchannel.scala │ │ ├── t2886.scala │ │ ├── t2946 │ │ │ ├── Parsers.scala │ │ │ ├── ResponseCommon.scala │ │ │ └── Test.scala │ │ ├── t4146.scala │ │ ├── t4279.scala │ │ ├── t4532.check │ │ ├── t4532.scala │ │ ├── t4602.scala │ │ ├── t6987.check │ │ ├── t6987.scala │ │ └── t8946.scala │ ├── scalacheck │ │ └── HashTrieSplit.scala │ └── script │ │ ├── fact.args │ │ ├── fact.bat │ │ ├── fact.check │ │ ├── fact.scala │ │ ├── second.bat │ │ ├── second.check │ │ ├── second.scala │ │ ├── t1015.bat │ │ ├── t1015.scala │ │ ├── t1017.bat │ │ └── t1017.scala ├── files │ ├── .gitignore │ ├── bench │ │ └── equality │ │ │ ├── eq.scala │ │ │ ├── eqeq.eqlog │ │ │ └── eqeq.scala │ ├── codelib │ │ └── code.jar.desired.sha1 │ ├── filters │ ├── instrumented │ │ ├── InstrumentationTest.check │ │ ├── InstrumentationTest.scala │ │ ├── README │ │ ├── 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 │ │ ├── actor-exceptions.check │ │ ├── actor-exceptions.scala │ │ ├── actor-executor.check │ │ ├── actor-executor.scala │ │ ├── actor-executor2.check │ │ ├── actor-executor2.scala │ │ ├── actor-executor3.check │ │ ├── actor-executor3.scala │ │ ├── actor-getstate.check │ │ ├── actor-getstate.scala │ │ ├── actor-link-getstate.check │ │ ├── actor-link-getstate.scala │ │ ├── actor-looping.check │ │ ├── actor-looping.scala │ │ ├── actor-normal-exit.check │ │ ├── actor-normal-exit.scala │ │ ├── actor-receivewithin.check │ │ ├── actor-receivewithin.scala │ │ ├── actor-sync-send-timeout.scala │ │ ├── actor-termination.check │ │ ├── actor-termination.scala │ │ ├── actor-uncaught-exception.check │ │ ├── actor-uncaught-exception.scala │ │ ├── actor-uncaught-exception2.check │ │ ├── actor-uncaught-exception2.scala │ │ ├── annotations.check │ │ ├── annotations.scala │ │ ├── beanInfo.check │ │ ├── beanInfo │ │ │ ├── C_1.scala │ │ │ └── Test_2.scala │ │ ├── bigints.check │ │ ├── bigints.scala │ │ ├── bytecode-test-example.check │ │ ├── bytecode-test-example │ │ │ ├── Foo_1.flags │ │ │ ├── Foo_1.scala │ │ │ └── Test.scala │ │ ├── console.check │ │ ├── console.scala │ │ ├── constant-optimization │ │ │ ├── Foo_1.flags │ │ │ ├── Foo_1.scala │ │ │ └── Test.scala │ │ ├── daemon-actor-termination.check │ │ ├── daemon-actor-termination.scala │ │ ├── deprecation.check │ │ ├── deprecation │ │ │ ├── Defs.java │ │ │ ├── Test_1.scala │ │ │ └── Use_2.java │ │ ├── duration-java.check │ │ ├── duration-java │ │ │ └── Test.java │ │ ├── duration-tck.scala │ │ ├── future-alarm.check │ │ ├── future-alarm.scala │ │ ├── future-awaitall-zero.check │ │ ├── future-awaitall-zero.scala │ │ ├── future-spec.check │ │ ├── future-spec │ │ │ ├── FutureTests.scala │ │ │ ├── PromiseTests.scala │ │ │ ├── TryTests.scala │ │ │ └── main.scala │ │ ├── future-termination.check │ │ ├── future-termination.scala │ │ ├── genericNest.scala │ │ ├── getGenericSuperclass.check │ │ ├── getGenericSuperclass.scala │ │ ├── inner.check │ │ ├── inner.scala │ │ ├── innerClassAttribute.check │ │ ├── innerClassAttribute │ │ │ ├── Classes_1.scala │ │ │ ├── JavaAnnot_1.java │ │ │ ├── Java_A_1.java │ │ │ └── Test.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 │ │ ├── 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 │ │ ├── nooptimise │ │ │ ├── Foo_1.flags │ │ │ ├── Foo_1.scala │ │ │ └── Test.scala │ │ ├── opt_value_class.check │ │ ├── opt_value_class │ │ │ ├── Value_1.scala │ │ │ └── test.scala │ │ ├── outerEnum.check │ │ ├── outerEnum.scala │ │ ├── patmat_opt_ignore_underscore.check │ │ ├── patmat_opt_ignore_underscore.flags │ │ ├── patmat_opt_ignore_underscore │ │ │ ├── Analyzed_1.scala │ │ │ └── test.scala │ │ ├── patmat_opt_no_nullcheck.check │ │ ├── patmat_opt_no_nullcheck.flags │ │ ├── patmat_opt_no_nullcheck │ │ │ ├── Analyzed_1.scala │ │ │ └── test.scala │ │ ├── patmat_opt_primitive_typetest.check │ │ ├── patmat_opt_primitive_typetest.flags │ │ ├── patmat_opt_primitive_typetest │ │ │ ├── Analyzed_1.scala │ │ │ └── test.scala │ │ ├── protectedacc.check │ │ ├── protectedacc.scala │ │ ├── reactor-exceptionOnSend.check │ │ ├── reactor-exceptionOnSend.scala │ │ ├── reactor-producer-consumer.check │ │ ├── reactor-producer-consumer.scala │ │ ├── reactor.check │ │ ├── reactor.scala │ │ ├── replyablereactor.check │ │ ├── replyablereactor.scala │ │ ├── replyablereactor2.check │ │ ├── replyablereactor2.scala │ │ ├── replyablereactor3.check │ │ ├── replyablereactor3.scala │ │ ├── replyablereactor4.check │ │ ├── replyablereactor4.scala │ │ ├── replyreactor-react-sender.check │ │ ├── replyreactor-react-sender.scala │ │ ├── replyreactor.check │ │ ├── replyreactor.scala │ │ ├── scala-concurrent-tck.scala │ │ ├── scheduler-adapter.check │ │ ├── scheduler-adapter.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 │ │ ├── t1116.scala │ │ ├── t1143-2.check │ │ ├── t1143-2 │ │ │ ├── Marker.java │ │ │ └── t1143-2.scala │ │ ├── t1143.scala │ │ ├── t1342.check │ │ ├── t1342 │ │ │ ├── JI.java │ │ │ └── SI.scala │ │ ├── t1449.check │ │ ├── t1449.scala │ │ ├── t1461.scala │ │ ├── t1464.check │ │ ├── t1464 │ │ │ ├── MyTrait.scala │ │ │ └── Test.java │ │ ├── t1600.scala │ │ ├── t1948.scala │ │ ├── t2104.scala │ │ ├── t2163 │ │ │ ├── t2163.java │ │ │ └── t2163.scala │ │ ├── t2214.check │ │ ├── t2214.scala │ │ ├── t2359.check │ │ ├── t2359.scala │ │ ├── t2470.check │ │ ├── t2470 │ │ │ ├── Action.java │ │ │ ├── Read_Classfile_2.scala │ │ │ ├── Task.java │ │ │ └── Test_1.scala │ │ ├── t2511.check │ │ ├── t2511.scala │ │ ├── t2530.check │ │ ├── t2530.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 │ │ ├── t3102.check │ │ ├── t3102.scala │ │ ├── t3356.check │ │ ├── t3356.scala │ │ ├── t3365.check │ │ ├── t3365.scala │ │ ├── t3407.check │ │ ├── t3407.scala │ │ ├── t3412-channel.check │ │ ├── t3412-channel.scala │ │ ├── t3412.check │ │ ├── t3412.scala │ │ ├── t3415 │ │ │ ├── Hello.java │ │ │ └── HelloWorld.scala │ │ ├── t3470.check │ │ ├── t3470.scala │ │ ├── t3838.check │ │ ├── t3838.scala │ │ ├── t4283 │ │ │ ├── AbstractFoo.java │ │ │ ├── ScalaBipp.scala │ │ │ └── Test.scala │ │ ├── t5471.check │ │ ├── t5471.scala │ │ ├── t6172.scala │ │ ├── t676.check │ │ ├── t676.scala │ │ ├── t680.scala │ │ ├── t6941.check │ │ ├── t6941.flags │ │ ├── t6941 │ │ │ ├── Analyzed_1.flags │ │ │ ├── Analyzed_1.scala │ │ │ └── test.scala │ │ ├── t7006.check │ │ ├── t7006 │ │ │ ├── Foo_1.flags │ │ │ ├── Foo_1.scala │ │ │ └── Test.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.scala │ │ ├── t9044.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 │ │ │ ├── Foo_1.flags │ │ │ ├── Foo_1.scala │ │ │ └── Test.scala │ │ ├── value-class-boxing.check │ │ ├── value-class-boxing │ │ │ ├── Analyzed_1.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 │ │ ├── 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.check │ │ ├── badtok-1.scala │ │ ├── badtok-2.check │ │ ├── badtok-2.scala │ │ ├── badtok-3.check │ │ ├── badtok-3.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 │ │ ├── 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-deprecation.check │ │ ├── eta-expand-star-deprecation.flags │ │ ├── eta-expand-star-deprecation.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 │ │ ├── illegal-stmt-start.check │ │ ├── illegal-stmt-start.scala │ │ ├── imp2.check │ │ ├── imp2.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── migration28.check │ │ ├── migration28.flags │ │ ├── migration28.scala │ │ ├── missing-param-type-tuple.check │ │ ├── missing-param-type-tuple.scala │ │ ├── mixins.check │ │ ├── mixins.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 │ │ ├── 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 │ │ ├── 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.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 │ │ ├── reflection-names-neg.check │ │ ├── reflection-names-neg.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_error_exist_no_crash.check │ │ ├── sammy_error_exist_no_crash.flags │ │ ├── sammy_error_exist_no_crash.scala │ │ ├── sammy_restrictions.check │ │ ├── sammy_restrictions.flags │ │ ├── sammy_restrictions.scala │ │ ├── sammy_wrong_arity.check │ │ ├── sammy_wrong_arity.flags │ │ ├── sammy_wrong_arity.scala │ │ ├── scopes.check │ │ ├── scopes.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 │ │ ├── t1009.check │ │ ├── t1009.scala │ │ ├── t1010.check │ │ ├── t1010.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 │ │ ├── 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 │ │ ├── t3234.check │ │ ├── t3234.flags │ │ ├── t3234.scala │ │ ├── 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 │ │ ├── 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 │ │ ├── t4283b.check │ │ ├── t4283b │ │ │ ├── AbstractFoo.java │ │ │ ├── ScalaBipp.scala │ │ │ └── Test.scala │ │ ├── t4302.check │ │ ├── t4302.flags │ │ ├── t4302.scala │ │ ├── t4417.check │ │ ├── t4417.scala │ │ ├── t4419.check │ │ ├── t4419.scala │ │ ├── t4425.check │ │ ├── t4425.flags │ │ ├── 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.flags │ │ ├── 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 │ │ ├── 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 │ │ │ ├── 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 │ │ ├── t6375.check │ │ ├── t6375.flags │ │ ├── t6375.scala │ │ ├── t639.check │ │ ├── t639.scala │ │ ├── t6406-regextract.check │ │ ├── t6406-regextract.flags │ │ ├── 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.flags │ │ ├── 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 │ │ ├── t6666d.check │ │ ├── t6666d.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 │ │ ├── t6728.check │ │ ├── t6728.scala │ │ ├── t6758.check │ │ ├── t6758.scala │ │ ├── t677.check │ │ ├── t677.scala │ │ ├── t6771b.check │ │ ├── t6771b.scala │ │ ├── t6788.check │ │ ├── t6788.scala │ │ ├── t6795.check │ │ ├── t6795.scala │ │ ├── t6815.check │ │ ├── t6815.scala │ │ ├── t6829.check │ │ ├── t6829.scala │ │ ├── t6844.check │ │ ├── t6844.scala │ │ ├── t6889.check │ │ ├── t6889.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 │ │ ├── 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 │ │ ├── t7020.check │ │ ├── t7020.flags │ │ ├── t7020.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 │ │ ├── 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.flags │ │ ├── t7294.scala │ │ ├── t7294b.check │ │ ├── t7294b.flags │ │ ├── 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 │ │ ├── t7475d.check │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── t8072.check │ │ ├── t8072.scala │ │ ├── t8104.check │ │ ├── t8104 │ │ │ ├── Macros_1.scala │ │ │ └── Test_2.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 │ │ ├── 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 │ │ ├── t8675.check │ │ ├── t8675.scala │ │ ├── t8675b.check │ │ ├── t8675b.scala │ │ ├── t8731.check │ │ ├── t8731.flags │ │ ├── t8731.scala │ │ ├── t8736-c.check │ │ ├── t8736-c.flags │ │ ├── t8736-c.scala │ │ ├── t875.check │ │ ├── t875.scala │ │ ├── t876.check │ │ ├── t876.scala │ │ ├── t8764.check │ │ ├── t8764.flags │ │ ├── t8764.scala │ │ ├── t877.check │ │ ├── t877.scala │ │ ├── t882.check │ │ ├── t882.scala │ │ ├── t8869.check │ │ ├── t8869.scala │ │ ├── t8890.check │ │ ├── t8890.scala │ │ ├── t900.check │ │ ├── t900.scala │ │ ├── t9008.check │ │ ├── t9008.scala │ │ ├── t9008b.check │ │ ├── t9008b.scala │ │ ├── t908.check │ │ ├── t908.scala │ │ ├── t909.check │ │ ├── t909.scala │ │ ├── t910.check │ │ ├── t910.scala │ │ ├── t935.check │ │ ├── t935.scala │ │ ├── t944.check │ │ ├── t944.scala │ │ ├── t961.check │ │ ├── t961.scala │ │ ├── t963.check │ │ ├── t963.scala │ │ ├── t963b.check │ │ ├── t963b.scala │ │ ├── t987.check │ │ ├── t987.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 │ │ ├── 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 │ │ ├── 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_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-imports.check │ │ ├── warn-unused-imports.flags │ │ ├── warn-unused-imports.scala │ │ ├── warn-unused-privates.check │ │ ├── warn-unused-privates.flags │ │ ├── warn-unused-privates.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 │ │ ├── SI-4012-a.scala │ │ ├── SI-4012-b.scala │ │ ├── SI-5788.scala │ │ ├── SI-7060.flags │ │ ├── SI-7060.scala │ │ ├── SI-7100.scala │ │ ├── SI-7638.scala │ │ ├── Transactions.scala │ │ ├── X.scala │ │ ├── Z.scala │ │ ├── abstract.scala │ │ ├── aliases.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 │ │ ├── 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.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 │ │ ├── existential-java-case-class │ │ │ ├── Client.scala │ │ │ └── J.java │ │ ├── existentials-harmful.scala │ │ ├── existentials.scala │ │ ├── exponential-spec.scala │ │ ├── extractor-types.scala │ │ ├── five-dot-f.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 │ │ ├── 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 │ │ ├── inferbroadtype.scala │ │ ├── infersingle.flags │ │ ├── infersingle.scala │ │ ├── init.scala │ │ ├── inline-access-levels.flags │ │ ├── inline-access-levels │ │ │ ├── A_1.scala │ │ │ └── Test_2.scala │ │ ├── inliner2.flags │ │ ├── inliner2.scala │ │ ├── irrefutable.scala │ │ ├── isApplicableSafe.scala │ │ ├── itay.scala │ │ ├── iterator-traversable-mix.scala │ │ ├── java-access-pos │ │ │ ├── J.java │ │ │ └── S1.scala │ │ ├── javaConversions-2.10-ambiguity.scala │ │ ├── javaConversions-2.10-regression.scala │ │ ├── javaReadsSigs │ │ │ └── fromjava.java │ │ ├── kinds.scala │ │ ├── kinzer.scala │ │ ├── ksbug1.scala │ │ ├── lambda.scala │ │ ├── lambdalift.scala │ │ ├── lambdalift1.scala │ │ ├── largecasetest.scala │ │ ├── lexical.scala │ │ ├── liftcode_polymorphic.scala │ │ ├── list-extractor.scala │ │ ├── list-optim-check.flags │ │ ├── list-optim-check.scala │ │ ├── listpattern.scala │ │ ├── local-objects.scala │ │ ├── localmodules.scala │ │ ├── lookupswitch.scala │ │ ├── looping-jsig.scala │ │ ├── lub-dealias-widen.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 │ │ ├── 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-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 │ │ ├── sammy_exist.flags │ │ ├── sammy_exist.scala │ │ ├── sammy_overload.flags │ │ ├── sammy_overload.scala │ │ ├── sammy_override.flags │ │ ├── sammy_override.scala │ │ ├── sammy_poly.flags │ │ ├── sammy_poly.scala │ │ ├── sammy_scope.flags │ │ ├── sammy_scope.scala │ │ ├── sammy_single.flags │ │ ├── sammy_single.scala │ │ ├── sammy_twice.flags │ │ ├── sammy_twice.scala │ │ ├── scala-singleton.scala │ │ ├── scoping1.scala │ │ ├── scoping2.scala │ │ ├── scoping3.scala │ │ ├── sealed-final.flags │ │ ├── sealed-final.scala │ │ ├── self-type-override.scala │ │ ├── selftails.scala │ │ ├── seq-ordering.scala │ │ ├── seqtest2.scala │ │ ├── setter-not-implicit.flags │ │ ├── setter-not-implicit.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 │ │ ├── t1001.scala │ │ ├── t1006.scala │ │ ├── t1014.scala │ │ ├── t1027.scala │ │ ├── t1029 │ │ │ ├── Test_1.scala │ │ │ └── Test_2.scala │ │ ├── t1034.scala │ │ ├── t1035.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 │ │ ├── t2171.flags │ │ ├── t2171.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── t3240.scala │ │ ├── t3249 │ │ │ ├── Test.java │ │ │ └── a.scala │ │ ├── t3252.flags │ │ ├── t3252.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 │ │ ├── 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 │ │ ├── t3430.flags │ │ ├── t3430.scala │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── t4579.flags │ │ ├── t4579.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 │ │ ├── t4831.scala │ │ ├── t4840.flags │ │ ├── t4840.scala │ │ ├── t4842.scala │ │ ├── t4853.scala │ │ ├── t4859.scala │ │ ├── t4869.scala │ │ ├── t4910.scala │ │ ├── t4911.flags │ │ ├── t4911.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 │ │ ├── t5156.scala │ │ ├── t516.scala │ │ ├── t5165 │ │ │ ├── TestAnnotation.java │ │ │ ├── TestObject.scala │ │ │ └── TestTrait.scala │ │ ├── t5165b │ │ │ ├── TestAnnotation_1.java │ │ │ ├── TestObject_3.scala │ │ │ └── TestTrait_2.scala │ │ ├── t5175.flags │ │ ├── t5175.scala │ │ ├── t5178.scala │ │ ├── t5198.scala │ │ ├── t5210.scala │ │ ├── t5217.scala │ │ ├── t522.scala │ │ ├── t5223.scala │ │ ├── t5240.scala │ │ ├── t5245.scala │ │ ├── t5259.scala │ │ ├── t530.scala │ │ ├── t5305.scala │ │ ├── t531.scala │ │ ├── t5313.scala │ │ ├── t5317.scala │ │ ├── t532.scala │ │ ├── t533.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 │ │ ├── t5604 │ │ │ ├── ReplConfig.scala │ │ │ └── ReplReporter.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 │ │ ├── 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 │ │ ├── t5729.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 │ │ ├── t5796.scala │ │ ├── t5809.flags │ │ ├── t5809.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 │ │ ├── t6157.flags │ │ ├── t6157.scala │ │ ├── t616.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 │ │ ├── t6547.flags │ │ ├── t6547.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 │ │ ├── t6675.flags │ │ ├── t6675.scala │ │ ├── t6712.scala │ │ ├── t6722.scala │ │ ├── t6745.scala │ │ ├── t675.scala │ │ ├── t6771.flags │ │ ├── t6771.scala │ │ ├── t6780.scala │ │ ├── t6797.scala │ │ ├── t6815.scala │ │ ├── t6815_import.scala │ │ ├── t684.scala │ │ ├── t6846.scala │ │ ├── t6891.flags │ │ ├── t6891.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 │ │ ├── t698.scala │ │ ├── t6994.flags │ │ ├── t6994.scala │ │ ├── t7011.flags │ │ ├── t7011.scala │ │ ├── t7014 │ │ │ ├── ThreadSafety.java │ │ │ ├── ThreadSafetyLevel.java │ │ │ └── t7014.scala │ │ ├── t7022.scala │ │ ├── t703.scala │ │ ├── t7033.scala │ │ ├── t7035.scala │ │ ├── t704.scala │ │ ├── t7091.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 │ │ ├── t7239.scala │ │ ├── t7264 │ │ │ ├── A_1.scala │ │ │ └── B_2.scala │ │ ├── t7285a.flags │ │ ├── t7285a.scala │ │ ├── t7294.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── t8002-nested-scope.scala │ │ ├── t8011.scala │ │ ├── t8013.flags │ │ ├── t8013 │ │ │ ├── inpervolated_2.scala │ │ │ └── inpervolator_1.scala │ │ ├── t802.scala │ │ ├── t8023.scala │ │ ├── t8023b.scala │ │ ├── t803.scala │ │ ├── t8045.scala │ │ ├── t8046.scala │ │ ├── t8046b.scala │ │ ├── t8046c.scala │ │ ├── t805.scala │ │ ├── t8054.scala │ │ ├── t8060.scala │ │ ├── t8062.flags │ │ ├── t8062 │ │ │ ├── A_1.scala │ │ │ └── B_2.scala │ │ ├── t8064.flags │ │ ├── t8064 │ │ │ ├── Client_2.scala │ │ │ └── Macro_1.scala │ │ ├── t8064b.flags │ │ ├── t8064b │ │ │ ├── Client_2.scala │ │ │ └── Macro_1.scala │ │ ├── t807.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 │ │ ├── t8306.flags │ │ ├── t8306.scala │ │ ├── t8310.flags │ │ ├── t8310.scala │ │ ├── t8315.flags │ │ ├── t8315.scala │ │ ├── t8315b.flags │ │ ├── t8315b.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 │ │ ├── t845.scala │ │ ├── t8460.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 │ │ ├── t8828.flags │ │ ├── t8828.scala │ │ ├── t8844.scala │ │ ├── t8868a │ │ │ ├── Sub_2.scala │ │ │ └── T_1.scala │ │ ├── t8868b │ │ │ ├── Sub_2.scala │ │ │ └── T_1.scala │ │ ├── t8868c │ │ │ ├── Sub_2.scala │ │ │ └── T_1.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 │ │ ├── t911.scala │ │ ├── t927.scala │ │ ├── t942 │ │ │ ├── Amount_1.java │ │ │ └── Test_2.scala │ │ ├── t946.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 │ │ ├── trait-force-info.flags │ │ ├── trait-force-info.scala │ │ ├── trait-parents.scala │ │ ├── traits.scala │ │ ├── tryexpr.scala │ │ ├── typealias_dubious.scala │ │ ├── typealiases.scala │ │ ├── typerep-stephane.scala │ │ ├── typerep_pos.scala │ │ ├── typesafecons.scala │ │ ├── typetags.scala │ │ ├── unapplyComplex.scala │ │ ├── unapplyContexts2.scala │ │ ├── unapplyGeneric.scala │ │ ├── unapplyNeedsMemberType.scala │ │ ├── unapplySeq.scala │ │ ├── unapplyVal.scala │ │ ├── unchecked-a.flags │ │ ├── unchecked-a.scala │ │ ├── unicode-decode.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_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 │ │ ├── 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 │ │ ├── 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 │ │ ├── t4287c.check │ │ ├── t4287c.flags │ │ ├── t4287c │ │ │ ├── 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 │ │ ├── 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 │ ├── 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 │ │ ├── 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 │ │ ├── SymbolsTest.scala │ │ ├── UnrolledBuffer.scala │ │ ├── WeakHashSetTest.scala │ │ ├── absoverride.check │ │ ├── absoverride.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 │ │ ├── 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 │ │ ├── bigDecimalCache.scala │ │ ├── bigDecimalTest.check │ │ ├── bigDecimalTest.scala │ │ ├── bitsets.check │ │ ├── bitsets.scala │ │ ├── blame_eye_triple_eee-double.check │ │ ├── blame_eye_triple_eee-double.flags │ │ ├── blame_eye_triple_eee-double.scala │ │ ├── blame_eye_triple_eee-float.check │ │ ├── blame_eye_triple_eee-float.flags │ │ ├── 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 │ │ ├── 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-conversions.check │ │ ├── collection-conversions.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 │ │ ├── concurrent-stream.check │ │ ├── concurrent-stream.scala │ │ ├── constant-optimization.check │ │ ├── constant-optimization.flags │ │ ├── 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 │ │ ├── ctries-new │ │ │ ├── DumbHash.scala │ │ │ ├── Wrap.scala │ │ │ ├── concmap.scala │ │ │ ├── iterator.scala │ │ │ ├── lnode.scala │ │ │ ├── main.scala │ │ │ └── snapshot.scala │ │ ├── ctries-old │ │ │ ├── DumbHash.scala │ │ │ ├── Wrap.scala │ │ │ ├── concmap.scala │ │ │ ├── iterator.scala │ │ │ ├── lnode.scala │ │ │ ├── main.scala │ │ │ └── snapshot.scala │ │ ├── dead-code-elimination.flags │ │ ├── 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 │ │ ├── delambdafyLambdaClassNames.check │ │ ├── delambdafyLambdaClassNames.flags │ │ ├── delambdafyLambdaClassNames │ │ │ ├── A_1.scala │ │ │ └── Test.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 │ │ ├── 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 │ │ ├── eta-expand-star2.check │ │ ├── eta-expand-star2.flags │ │ ├── eta-expand-star2.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 │ │ ├── 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 │ │ ├── hashCodeBoxesRunTime.scala │ │ ├── hashCodeDistribution.scala │ │ ├── hashhash.scala │ │ ├── hashset.check │ │ ├── hashset.scala │ │ ├── hashsetremove.check │ │ ├── hashsetremove.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 │ │ ├── implicitclasses.scala │ │ ├── implicits.check │ │ ├── implicits.scala │ │ ├── imports.check │ │ ├── imports.scala │ │ ├── indexedSeq-apply.check │ │ ├── indexedSeq-apply.scala │ │ ├── indexedSeq.scala │ │ ├── inferred-type-constructors.check │ │ ├── inferred-type-constructors.scala │ │ ├── infiniteloop.check │ │ ├── infiniteloop.scala │ │ ├── infix.check │ │ ├── infix.scala │ │ ├── inline-ex-handlers.check │ │ ├── inline-ex-handlers.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 │ │ ├── kind-repl-command.check │ │ ├── kind-repl-command.scala │ │ ├── kmpSliceSearch.check │ │ ├── kmpSliceSearch.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.check │ │ ├── lazy-locals.scala │ │ ├── lazy-override-run.check │ │ ├── lazy-override-run.scala │ │ ├── lazy-traits.check │ │ ├── lazy-traits.scala │ │ ├── lift-and-unlift.scala │ │ ├── list_map.scala │ │ ├── lists-run.scala │ │ ├── literals.check │ │ ├── literals.flags │ │ ├── literals.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-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-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 │ │ ├── nonlocalreturn.check │ │ ├── nonlocalreturn.scala │ │ ├── nothingTypeDce.flags │ │ ├── nothingTypeDce.scala │ │ ├── nothingTypeNoFramesNoDce.check │ │ ├── nothingTypeNoFramesNoDce.flags │ │ ├── nothingTypeNoFramesNoDce.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.flags │ │ ├── optimizer-array-load.scala │ │ ├── option-fold.check │ │ ├── option-fold.scala │ │ ├── origins.check │ │ ├── origins.flags │ │ ├── origins.scala │ │ ├── outertest.scala │ │ ├── overloads.check │ │ ├── overloads.scala │ │ ├── parmap-ops.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 │ │ ├── pc-conversions.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 │ │ ├── private-inline.check │ │ ├── private-inline.flags │ │ ├── private-inline.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-attachments.check │ │ ├── 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-implClass.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-mem-typecheck.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-colon-type.check │ │ ├── repl-colon-type.scala │ │ ├── repl-empty-package.check │ │ ├── repl-empty-package │ │ │ ├── s_1.scala │ │ │ └── s_2.scala │ │ ├── repl-javap-app.check │ │ ├── repl-javap-app.scala │ │ ├── repl-javap-def.scala │ │ ├── repl-javap-fun.scala │ │ ├── repl-javap-lambdas.scala │ │ ├── repl-javap-mem.scala │ │ ├── repl-javap-memfun.scala │ │ ├── repl-javap-more-fun.scala │ │ ├── repl-javap-outdir-funs.flags │ │ ├── repl-javap-outdir-funs │ │ │ ├── foo_1.scala │ │ │ └── run-repl_7.scala │ │ ├── repl-javap-outdir │ │ │ ├── foo_1.scala │ │ │ └── run-repl_7.scala │ │ ├── repl-javap.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-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-term-macros.check │ │ ├── repl-term-macros.scala │ │ ├── repl-transcript.check │ │ ├── repl-transcript.scala │ │ ├── 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.flags │ │ ├── run-bug4840.scala │ │ ├── runtime-richChar.check │ │ ├── runtime-richChar.scala │ │ ├── runtime.check │ │ ├── runtime.scala │ │ ├── runtimeEval1.check │ │ ├── runtimeEval1.scala │ │ ├── runtimeEval2.check │ │ ├── runtimeEval2.scala │ │ ├── sammy_java8.flags │ │ ├── sammy_java8.scala │ │ ├── sammy_repeated.check │ │ ├── sammy_repeated.flags │ │ ├── sammy_repeated.scala │ │ ├── scan.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 │ │ ├── stringinterpolation_macro-run.check │ │ ├── stringinterpolation_macro-run.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 │ │ ├── t1005.check │ │ ├── t1005.scala │ │ ├── t102.check │ │ ├── t102.scala │ │ ├── t1042.check │ │ ├── t1042.scala │ │ ├── t1044.scala │ │ ├── t1048.check │ │ ├── t1048.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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-bcode.check │ │ ├── t3452b-bcode.flags │ │ ├── t3452b-bcode │ │ │ ├── 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.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 │ │ ├── t3822.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 │ │ ├── t4285.check │ │ ├── t4285.flags │ │ ├── t4285.scala │ │ ├── t4287inferredMethodTypes.check │ │ ├── t4287inferredMethodTypes.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 │ │ ├── t4459.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.scala │ │ ├── t4601.check │ │ ├── t4601.scala │ │ ├── t4608.scala │ │ ├── t4617.check │ │ ├── t4617.scala │ │ ├── t4656.check │ │ ├── t4656.scala │ │ ├── t4658.check │ │ ├── t4658.scala │ │ ├── t4660.scala │ │ ├── t4671.check │ │ ├── t4671.scala │ │ ├── t4680.check │ │ ├── t4680.scala │ │ ├── t4697.check │ │ ├── t4697.scala │ │ ├── t4709.scala │ │ ├── t4710.check │ │ ├── t4710.scala │ │ ├── t4723.scala │ │ ├── t4729.check │ │ ├── t4729 │ │ │ ├── J_1.java │ │ │ └── S_2.scala │ │ ├── t4742.flags │ │ ├── t4742.scala │ │ ├── t4750.check │ │ ├── t4750.scala │ │ ├── t4752.scala │ │ ├── t4753.check │ │ ├── t4753.scala │ │ ├── t4761.check │ │ ├── t4761.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 │ │ ├── t4894.scala │ │ ├── t4895.scala │ │ ├── t4897.check │ │ ├── t4897.scala │ │ ├── t493.scala │ │ ├── t4930.check │ │ ├── t4930.scala │ │ ├── t4935.check │ │ ├── t4935.flags │ │ ├── t4935.scala │ │ ├── t4950.check │ │ ├── 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 │ │ ├── t5293-map.scala │ │ ├── t5293.scala │ │ ├── t5300.scala │ │ ├── t5313.check │ │ ├── t5313.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 │ │ ├── t5375.check │ │ ├── t5375.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 │ │ ├── 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 │ │ ├── t6052.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 │ │ ├── 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.flags │ │ ├── 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 │ │ ├── t6288b-jump-position.check │ │ ├── t6288b-jump-position.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 │ │ ├── t6410.check │ │ ├── t6410.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 │ │ ├── t6448.check │ │ ├── t6448.scala │ │ ├── t6467.scala │ │ ├── t6481.check │ │ ├── t6481.scala │ │ ├── t6488.scala │ │ ├── t6500.scala │ │ ├── t6502.check │ │ ├── t6502.scala │ │ ├── t6506.scala │ │ ├── t6507.check │ │ ├── t6507.scala │ │ ├── t6534.scala │ │ ├── t6541-option.scala │ │ ├── t6541.flags │ │ ├── t6541.scala │ │ ├── t6546.flags │ │ ├── t6546 │ │ │ ├── A_1.scala │ │ │ └── B_2.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 │ │ ├── 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 │ │ ├── t6908.scala │ │ ├── t6911.scala │ │ ├── t6928-run.check │ │ ├── t6928-run.scala │ │ ├── t6935.check │ │ ├── t6935.scala │ │ ├── t6937.check │ │ ├── t6937.scala │ │ ├── t6955.scala │ │ ├── t6956.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.flags │ │ ├── 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.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 │ │ ├── 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 │ │ ├── t7198.check │ │ ├── t7198.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.flags │ │ ├── t7407b.scala │ │ ├── t7436.scala │ │ ├── t7439.check │ │ ├── t7439 │ │ │ ├── A_1.java │ │ │ ├── B_1.java │ │ │ └── Test_2.scala │ │ ├── t744.check │ │ ├── t744.scala │ │ ├── t7445.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 │ │ ├── t7498.scala │ │ ├── t7507.scala │ │ ├── t751.scala │ │ ├── t7510 │ │ │ ├── Ann_1.java │ │ │ └── Test_2.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.scala │ │ │ └── PackageProtectedJava.java │ │ ├── t7582b.check │ │ ├── t7582b.flags │ │ ├── t7582b │ │ │ ├── InlineHolder.scala │ │ │ └── PackageProtectedJava.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 │ │ ├── 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 │ │ ├── t7817-tree-gen.check │ │ ├── t7817-tree-gen.flags │ │ ├── t7817-tree-gen.scala │ │ ├── t7817.scala │ │ ├── t7825.scala │ │ ├── t7843-jsr223-service.check │ │ ├── t7843-jsr223-service.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-regression.check │ │ ├── t7899-regression.flags │ │ ├── t7899-regression.scala │ │ ├── t7899.scala │ │ ├── t7912.scala │ │ ├── t7932.check │ │ ├── t7932.scala │ │ ├── t7933.check │ │ ├── t7933.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-bcode.flags │ │ ├── t8233-bcode.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 │ │ ├── t8346.check │ │ ├── t8346.scala │ │ ├── t8395.scala │ │ ├── t8425.check │ │ ├── t8425 │ │ │ ├── Macros_1.scala │ │ │ └── Test_2.scala │ │ ├── t8428.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 │ │ ├── t8549.check │ │ ├── t8549.scala │ │ ├── t8549b.scala │ │ ├── t8570.flags │ │ ├── t8570.scala │ │ ├── t8570a.check │ │ ├── t8570a.flags │ │ ├── t8570a.scala │ │ ├── t8574.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.class │ │ │ ├── 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 │ │ ├── t8738.scala │ │ ├── t874.check │ │ ├── t874.scala │ │ ├── t8764.check │ │ ├── t8764.flags │ │ ├── t8764.scala │ │ ├── t8803.check │ │ ├── t8803.scala │ │ ├── t8823.scala │ │ ├── t8843-repl-xlat.scala │ │ ├── t8845.flags │ │ ├── t8845.scala │ │ ├── t8852a.scala │ │ ├── t8888.flags │ │ ├── t8888.scala │ │ ├── t889.check │ │ ├── t889.scala │ │ ├── t8893.scala │ │ ├── t8893b.scala │ │ ├── t8907.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 │ │ ├── t8960.scala │ │ ├── t9003.flags │ │ ├── t9003.scala │ │ ├── t9027.check │ │ ├── t9027.scala │ │ ├── t9030.scala │ │ ├── t920.check │ │ ├── t920.scala │ │ ├── t949.scala │ │ ├── t978.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 │ │ ├── test-cpp.check │ │ ├── test-cpp.scala │ │ ├── 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_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 │ │ ├── trait-renaming.check │ │ ├── trait-renaming │ │ │ ├── A_1.scala │ │ │ └── B_2.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 │ │ ├── tuple-zipped.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 │ │ ├── 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 │ │ ├── weakconform.scala │ │ ├── withIndex.check │ │ ├── withIndex.scala │ │ ├── xMigration.check │ │ └── xMigration.scala │ ├── scalacheck │ │ ├── CheckCollections.scala │ │ ├── CheckEither.scala │ │ ├── Ctrie.scala │ │ ├── ReflectionExtractors.scala │ │ ├── Unrolled.scala │ │ ├── array-new.scala │ │ ├── array-old.scala │ │ ├── avl.scala │ │ ├── duration.scala │ │ ├── list.scala │ │ ├── nan-ordering.scala │ │ ├── parallel-collections │ │ │ ├── IntOperators.scala │ │ │ ├── IntValues.scala │ │ │ ├── Operators.scala │ │ │ ├── PairOperators.scala │ │ │ ├── PairValues.scala │ │ │ ├── ParallelArrayCheck.scala │ │ │ ├── ParallelArrayTest.scala │ │ │ ├── ParallelArrayViewCheck.scala │ │ │ ├── ParallelCtrieCheck.scala │ │ │ ├── ParallelHashMapCheck.scala │ │ │ ├── ParallelHashSetCheck.scala │ │ │ ├── ParallelHashTrieCheck.scala │ │ │ ├── ParallelIterableCheck.scala │ │ │ ├── ParallelMapCheck1.scala │ │ │ ├── ParallelRangeCheck.scala │ │ │ ├── ParallelSeqCheck.scala │ │ │ ├── ParallelSetCheck.scala │ │ │ ├── ParallelVectorCheck.scala │ │ │ └── pc.scala │ │ ├── primitive-eqeq.scala │ │ ├── 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 │ │ │ ├── Test.scala │ │ │ ├── TypeConstructionProps.scala │ │ │ ├── TypeDeconstructionProps.scala │ │ │ ├── TypecheckedProps.scala │ │ │ └── UnliftableProps.scala │ │ ├── range.scala │ │ ├── redblacktree.scala │ │ ├── scan.scala │ │ ├── substringTests.scala │ │ ├── t2460.scala │ │ ├── t4147.scala │ │ ├── test.scala │ │ ├── testdir │ │ │ ├── dep.scala │ │ │ └── test.scala │ │ ├── treemap.scala │ │ └── treeset.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 │ │ ├── traitObject.check │ │ ├── traitObject.scala │ │ ├── typeAnnotations.check │ │ ├── typeAnnotations.scala │ │ ├── valAndVar.check │ │ ├── valAndVar.scala │ │ ├── wildcardType.check │ │ └── wildcardType.scala │ ├── specialized │ │ ├── SI-7343.scala │ │ ├── SI-7344.scala │ │ ├── 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.scala │ │ ├── spec-super.check │ │ ├── spec-super.scala │ │ ├── spec-t3896.check │ │ ├── spec-t3896.scala │ │ ├── t6035.check │ │ ├── t6035 │ │ │ ├── first_1.scala │ │ │ └── second_2.scala │ │ ├── tb3651.check │ │ ├── tb3651.scala │ │ ├── tc3651.check │ │ ├── tc3651.scala │ │ ├── td3651.check │ │ ├── td3651.scala │ │ └── test.scala │ ├── speclib │ │ └── instrumented.jar.desired.sha1 │ ├── subscript │ │ └── scriptdef.scala │ └── t8449 │ │ ├── Client.scala │ │ └── Test.java ├── flaky │ └── pos │ │ └── t2868 │ │ ├── Jann.java │ │ ├── Nest.java │ │ ├── pick_1.scala │ │ └── t2868_src_2.scala ├── instrumented │ ├── boxes.patch │ ├── library │ │ └── scala │ │ │ └── runtime │ │ │ ├── BoxesRunTime.java │ │ │ └── ScalaRunTime.scala │ ├── mkinstrumented.sh │ └── srt.patch ├── junit │ └── scala │ │ ├── StringContextTest.scala │ │ ├── collection │ │ ├── IndexedSeqOptimizedTest.scala │ │ ├── IterableViewLikeTest.scala │ │ ├── IteratorTest.scala │ │ ├── SetMapConsistencyTest.scala │ │ ├── TraversableOnceTest.scala │ │ ├── convert │ │ │ └── MapWrapperTest.scala │ │ ├── immutable │ │ │ ├── ListTest.scala │ │ │ ├── PagedSeqTest.scala │ │ │ ├── QueueTest.scala │ │ │ ├── RangeConsistencyTest.scala │ │ │ ├── TreeMapTest.scala │ │ │ └── TreeSetTest.scala │ │ └── mutable │ │ │ ├── ArrayBufferTest.scala │ │ │ ├── ArraySortingTest.scala │ │ │ ├── BitSetTest.scala │ │ │ ├── PriorityQueueTest.scala │ │ │ └── VectorTest.scala │ │ ├── concurrent │ │ └── impl │ │ │ └── DefaultPromiseTest.scala │ │ ├── io │ │ └── SourceTest.scala │ │ ├── issues │ │ └── BytecodeTests.scala │ │ ├── math │ │ ├── BigDecimalTest.scala │ │ └── NumericTest.scala │ │ ├── reflect │ │ ├── QTest.scala │ │ ├── internal │ │ │ ├── MirrorsTest.scala │ │ │ ├── NamesTest.scala │ │ │ ├── PrintersTest.scala │ │ │ ├── ScopeTest.scala │ │ │ ├── TypesTest.scala │ │ │ └── util │ │ │ │ ├── AbstractFileClassLoaderTest.scala │ │ │ │ ├── SourceFileTest.scala │ │ │ │ ├── StringOpsTest.scala │ │ │ │ └── WeakHashSetTest.scala │ │ └── io │ │ │ └── ZipArchiveTest.scala │ │ ├── runtime │ │ └── ScalaRunTimeTest.scala │ │ ├── tools │ │ ├── nsc │ │ │ ├── SampleTest.scala │ │ │ ├── ScriptRunnerTest.scala │ │ │ ├── backend │ │ │ │ └── jvm │ │ │ │ │ ├── BTypesTest.scala │ │ │ │ │ ├── CodeGenTools.scala │ │ │ │ │ ├── DirectCompileTest.scala │ │ │ │ │ └── opt │ │ │ │ │ ├── CompactLocalVariablesTest.scala │ │ │ │ │ ├── EmptyExceptionHandlersTest.scala │ │ │ │ │ ├── EmptyLabelsAndLineNumbersTest.scala │ │ │ │ │ ├── MethodLevelOpts.scala │ │ │ │ │ ├── SimplifyJumpsTest.scala │ │ │ │ │ ├── UnreachableCodeTest.scala │ │ │ │ │ └── UnusedLocalVariablesTest.scala │ │ │ ├── classpath │ │ │ │ ├── AggregateFlatClassPathTest.scala │ │ │ │ └── FlatClassPathResolverTest.scala │ │ │ ├── interpreter │ │ │ │ └── TabulatorTest.scala │ │ │ ├── settings │ │ │ │ ├── ScalaVersionTest.scala │ │ │ │ └── SettingsTest.scala │ │ │ ├── symtab │ │ │ │ ├── CannotHaveAttrsTest.scala │ │ │ │ ├── FreshNameExtractorTest.scala │ │ │ │ ├── StdNamesTest.scala │ │ │ │ ├── SymbolTableForUnitTesting.scala │ │ │ │ └── SymbolTableTest.scala │ │ │ ├── transform │ │ │ │ └── patmat │ │ │ │ │ └── SolvingTest.scala │ │ │ └── util │ │ │ │ ├── ClassPathImplComparator.scala │ │ │ │ └── StackTraceTest.scala │ │ └── testing │ │ │ ├── AssertThrowsTest.scala │ │ │ └── AssertUtil.scala │ │ └── util │ │ ├── SpecVersionTest.scala │ │ ├── TryTest.scala │ │ └── matching │ │ ├── CharRegexTest.scala │ │ └── RegexTest.scala ├── long-running │ └── jvm │ │ └── memleak2_actor.scala ├── osgi │ └── src │ │ ├── BasicLibrary.scala │ │ ├── BasicReflection.scala │ │ ├── BasicTest.scala │ │ ├── ReflectionToolboxTest.scala │ │ └── ScalaOsgiHelper.scala ├── partest ├── partest.bat ├── pending │ ├── buildmanager │ │ └── t2443 │ │ │ ├── BitSet.scala │ │ │ ├── t2443.changes │ │ │ └── BitSet2.scala │ │ │ ├── t2443.check │ │ │ └── t2443.test │ ├── jvm │ │ ├── actor-executor4.check │ │ ├── actor-executor4.scala │ │ ├── actor-receive-sender.check │ │ ├── actor-receive-sender.scala │ │ ├── actorgc_leak.check │ │ ├── actorgc_leak.scala │ │ ├── cf-attributes.check │ │ ├── cf-attributes.scala │ │ ├── javasigs.check │ │ ├── javasigs.scala │ │ ├── reactWithinZero.check │ │ ├── reactWithinZero.scala │ │ ├── receiveWithinZero.check │ │ ├── receiveWithinZero.scala │ │ ├── t1801.check │ │ ├── t1801.scala │ │ ├── t2515.check │ │ ├── t2515.scala │ │ ├── t2705 │ │ │ ├── GenericInterface.java │ │ │ ├── Methods.java │ │ │ └── t2705.scala │ │ ├── terminateLinked.check │ │ ├── terminateLinked.scala │ │ ├── timeout.check │ │ └── timeout.scala │ ├── neg │ │ ├── dot-classpath.flags │ │ ├── dot-classpath │ │ │ ├── S_1.scala │ │ │ └── S_2.scala │ │ ├── macro-invalidusage-badbounds-b.check │ │ ├── macro-invalidusage-badbounds-b.flags │ │ ├── macro-invalidusage-badbounds-b │ │ │ ├── Impls_1.scala │ │ │ └── Macros_Test_2.scala │ │ ├── reify_packed.check │ │ ├── reify_packed.scala │ │ ├── t0653.scala │ │ ├── t1557.scala │ │ ├── t1800.scala │ │ ├── t2080.scala │ │ ├── t3152.scala │ │ ├── t3633 │ │ │ └── test │ │ │ │ └── Test.scala │ │ ├── t5008.scala │ │ ├── t5589neg.check │ │ ├── t5589neg.flags │ │ ├── t5589neg.scala │ │ ├── t5589neg2.check │ │ ├── t5589neg2.scala │ │ ├── t5618.check │ │ ├── t5618.scala │ │ ├── t7441.check │ │ ├── t7441.scala │ │ ├── t7886.scala │ │ ├── t7886b.scala │ │ ├── tcpoly_typealias_eta.scala │ │ ├── tcpoly_variance_enforce_getter_setter.scala │ │ └── type-diagnostics.scala │ ├── pos │ │ ├── bug4704.scala │ │ ├── inference.scala │ │ ├── misc │ │ │ ├── A.java │ │ │ ├── B.scala │ │ │ ├── J.java │ │ │ └── S.scala │ │ ├── no-widen-locals.flags │ │ ├── no-widen-locals.scala │ │ ├── nothing.scala │ │ ├── overloading-boundaries.scala │ │ ├── pattern-typing.scala │ │ ├── sig │ │ │ ├── sigs.java │ │ │ ├── sigs.scala │ │ │ └── sigtest.scala │ │ ├── t0621.scala │ │ ├── t1336.scala │ │ ├── t1476.scala │ │ ├── t1786.scala │ │ ├── t2071.scala │ │ ├── t2173.scala │ │ ├── t3943 │ │ │ ├── Outer_1.java │ │ │ └── test_2.scala │ │ ├── t4012.scala │ │ ├── t4123.scala │ │ ├── t4436.scala │ │ ├── t4541.scala │ │ ├── t4606.scala │ │ ├── t4612.scala │ │ ├── t4683.scala │ │ ├── t4695 │ │ │ ├── T_1.scala │ │ │ └── T_2.scala │ │ ├── t4787.scala │ │ ├── t4790.scala │ │ ├── t5082.scala │ │ ├── t5231.scala │ │ ├── t5265.scala │ │ ├── t5400.scala │ │ ├── t5459.scala │ │ ├── t5503.flags │ │ ├── t5503.scala │ │ ├── t5521.scala │ │ ├── t5534.scala │ │ ├── t5559.scala │ │ ├── t5564.scala │ │ ├── t5579.scala │ │ ├── t5585.scala │ │ ├── t5589.scala │ │ ├── t5712.scala │ │ ├── t5877.scala │ │ ├── t5954 │ │ │ ├── T_1.scala │ │ │ ├── T_2.scala │ │ │ └── T_3.scala │ │ ├── t6161.scala │ │ ├── t6225.scala │ │ ├── t7234.scala │ │ ├── t7234b.scala │ │ ├── t7778 │ │ │ ├── Foo_1.java │ │ │ └── Test_2.scala │ │ ├── t8128b.scala │ │ ├── t8363b.scala │ │ ├── those-kinds-are-high.scala │ │ ├── treecheckers.flags │ │ ├── treecheckers │ │ │ ├── c1.scala │ │ │ ├── c2.scala │ │ │ ├── c3.scala │ │ │ ├── c4.scala │ │ │ ├── c5.scala │ │ │ └── c6.scala │ │ ├── unappgadteval.scala │ │ └── virt.scala │ ├── presentation │ │ ├── context-bounds1.check │ │ └── context-bounds1 │ │ │ ├── Test.scala │ │ │ └── src │ │ │ └── ContextBounds.scala │ ├── reify_typeof.check │ ├── reify_typeof.scala │ ├── run │ │ ├── TestFlatMap.scala │ │ ├── bug4704run.scala │ │ ├── hk-lub-fail.scala │ │ ├── idempotency-partial-functions.scala │ │ ├── implicit-classes.scala │ │ ├── instanceOfAndTypeMatching.scala │ │ ├── jar-version.scala │ │ ├── macro-expand-default.flags │ │ ├── macro-expand-default │ │ │ ├── Impls_1.scala │ │ │ └── Macros_Test_2.scala │ │ ├── macro-expand-implicit-macro-defeats-type-inference.check │ │ ├── macro-expand-implicit-macro-defeats-type-inference.flags │ │ ├── macro-expand-implicit-macro-defeats-type-inference │ │ │ ├── Impls_1.scala │ │ │ └── Macros_Test_2.scala │ │ ├── macro-expand-macro-has-context-bound.check │ │ ├── macro-expand-macro-has-context-bound.flags │ │ ├── macro-expand-macro-has-context-bound │ │ │ ├── Impls_1.scala │ │ │ └── Macros_Test_2.scala │ │ ├── macro-expand-named.flags │ │ ├── macro-expand-named │ │ │ ├── Impls_1.scala │ │ │ └── Macros_Test_2.scala │ │ ├── macro-expand-tparams-prefix-e1.check │ │ ├── macro-expand-tparams-prefix-e1.flags │ │ ├── macro-expand-tparams-prefix-e1 │ │ │ ├── Impls_1.scala │ │ │ └── Macros_Test_2.scala │ │ ├── macro-expand-tparams-prefix-f1.check │ │ ├── macro-expand-tparams-prefix-f1.flags │ │ ├── macro-expand-tparams-prefix-f1 │ │ │ ├── Impls_1.scala │ │ │ └── Macros_Test_2.scala │ │ ├── macro-quasiinvalidbody-a.check │ │ ├── macro-quasiinvalidbody-a.flags │ │ ├── macro-quasiinvalidbody-a │ │ │ ├── Impls_1.scala │ │ │ └── Macros_Test_2.scala │ │ ├── macro-quasiinvalidbody-b.check │ │ ├── macro-quasiinvalidbody-b.flags │ │ ├── macro-quasiinvalidbody-b │ │ │ ├── Impls_1.scala │ │ │ └── Macros_Test_2.scala │ │ ├── macro-reify-array.flags │ │ ├── macro-reify-array │ │ │ ├── Macros_1.scala │ │ │ └── Test_2.scala │ │ ├── macro-reify-groundtypetag-hktypeparams-tags.check │ │ ├── macro-reify-groundtypetag-hktypeparams-tags │ │ │ └── Test.scala │ │ ├── macro-reify-tagful-b.check │ │ ├── macro-reify-tagful-b.flags │ │ ├── macro-reify-tagful-b │ │ │ ├── Macros_1.scala │ │ │ └── Test_2.scala │ │ ├── macro-reify-tagless-b.check │ │ ├── macro-reify-tagless-b.flags │ │ ├── macro-reify-tagless-b │ │ │ ├── Impls_Macros_1.scala │ │ │ └── Test_2.scala │ │ ├── macro-reify-typetag-hktypeparams-notags.check │ │ ├── macro-reify-typetag-hktypeparams-notags │ │ │ └── Test.scala │ │ ├── macro-reify-typetag-hktypeparams-tags.check │ │ ├── macro-reify-typetag-hktypeparams-tags │ │ │ └── Test.scala │ │ ├── macro-term-declared-in-anonymous-explicit-import │ │ │ ├── Impls_1.scala │ │ │ └── Macros_Test_2.scala │ │ ├── partial-anyref-spec.check │ │ ├── partial-anyref-spec.scala │ │ ├── reflection-mem-eval.scala │ │ ├── reify_addressbook.check │ │ ├── reify_addressbook.scala │ │ ├── reify_brainf_ck.check │ │ ├── reify_brainf_ck.scala │ │ ├── reify_callccinterpreter.check │ │ ├── reify_callccinterpreter.scala │ │ ├── reify_closure2b.check │ │ ├── reify_closure2b.scala │ │ ├── reify_closure3b.check │ │ ├── reify_closure3b.scala │ │ ├── reify_closure4b.check │ │ ├── reify_closure4b.scala │ │ ├── reify_closure5b.check │ │ ├── reify_closure5b.scala │ │ ├── reify_closure9a.check │ │ ├── reify_closure9a.scala │ │ ├── reify_closure9b.check │ │ ├── reify_closure9b.scala │ │ ├── reify_closures11.check │ │ ├── reify_closures11.scala │ │ ├── reify_gadts.check │ │ ├── reify_gadts.scala │ │ ├── reify_newimpl_07.scala │ │ ├── reify_newimpl_08.scala │ │ ├── reify_newimpl_09.scala │ │ ├── reify_newimpl_09a.scala │ │ ├── reify_newimpl_09b.scala │ │ ├── reify_newimpl_09c.scala │ │ ├── reify_newimpl_10.scala │ │ ├── reify_newimpl_16.scala │ │ ├── reify_newimpl_17.scala │ │ ├── reify_newimpl_28.scala │ │ ├── reify_newimpl_32.scala │ │ ├── reify_newimpl_34.scala │ │ ├── reify_newimpl_46.scala │ │ ├── reify_newimpl_53.scala │ │ ├── reify_simpleinterpreter.check │ │ ├── reify_simpleinterpreter.scala │ │ ├── signals.scala │ │ ├── sigtp.check │ │ ├── sigtp.scala │ │ ├── string-reverse.scala │ │ ├── structural-types-vs-anon-classes.scala │ │ ├── t0508x.scala │ │ ├── t1980.scala │ │ ├── t2034.scala │ │ ├── t2364.check │ │ ├── t2364.scala │ │ ├── t2897.scala │ │ ├── t3609.scala │ │ ├── t3669.scala │ │ ├── t3832.scala │ │ ├── t3857.check │ │ ├── t3857.scala │ │ ├── t3899.check │ │ ├── t3899 │ │ │ ├── Base_1.java │ │ │ └── Derived_2.scala │ │ ├── t4098.scala │ │ ├── t4291.check │ │ ├── t4291.scala │ │ ├── t4460.scala │ │ ├── t4511.scala │ │ ├── t4511b.scala │ │ ├── t4574.scala │ │ ├── t4713 │ │ │ ├── JavaAnnots.java │ │ │ └── Problem.scala │ │ ├── t4971.scala │ │ ├── t4996.scala │ │ ├── t5258b.check │ │ ├── t5258b.scala │ │ ├── t5258c.check │ │ ├── t5258c.scala │ │ ├── t5284.scala │ │ ├── t5334_1.scala │ │ ├── t5334_2.scala │ │ ├── t5427a.check │ │ ├── t5427a.scala │ │ ├── t5427b.check │ │ ├── t5427b.scala │ │ ├── t5427c.check │ │ ├── t5427c.scala │ │ ├── t5427d.check │ │ ├── t5427d.scala │ │ ├── t5610b.check │ │ ├── t5610b.scala │ │ ├── t5692.flags │ │ ├── t5692 │ │ │ ├── Impls_Macros_1.scala │ │ │ └── Test_2.scala │ │ ├── t5698 │ │ │ ├── client.scala │ │ │ ├── server.scala │ │ │ └── testmsg.scala │ │ ├── t5722.scala │ │ ├── t5726a.scala │ │ ├── t5726b.scala │ │ ├── t5866b.scala │ │ ├── t5882.scala │ │ ├── t5943b1.scala │ │ ├── t5943b2.scala │ │ ├── t6387.check │ │ ├── t6387.scala │ │ ├── t6408.scala │ │ ├── t6591_4.check │ │ ├── t6591_4.scala │ │ ├── t7733.check │ │ ├── t7733 │ │ │ ├── Separate_1.scala │ │ │ └── Test_2.scala │ │ ├── virtpatmat_anonfun_underscore.flags │ │ └── virtpatmat_anonfun_underscore.scala │ ├── scalacheck │ │ └── process.scala │ ├── script │ │ ├── dashi.check │ │ ├── dashi.flags │ │ ├── dashi │ │ │ └── a.scala │ │ ├── error-messages.check │ │ ├── error-messages.scala │ │ ├── t2365.javaopts │ │ ├── t2365.sh │ │ └── t2365 │ │ │ ├── Test.scala │ │ │ └── runner.scala │ ├── shootout │ │ ├── fasta.check │ │ ├── fasta.scala │ │ ├── fasta.scala.runner │ │ ├── harmonic.scala-2.scala │ │ ├── harmonic.scala-2.scala.runner │ │ ├── harmonic.scala-3.scala │ │ ├── harmonic.scala-3.scala.runner │ │ ├── heapsort.scala │ │ ├── heapsort.scala.runner │ │ ├── mandelbrot.scala-2.check │ │ ├── mandelbrot.scala-2.scala │ │ ├── mandelbrot.scala-2.scala.runner │ │ ├── message.check │ │ ├── message.javaopts │ │ ├── message.scala │ │ ├── message.scala.runner │ │ ├── meteor.scala │ │ ├── meteor.scala-2.scala │ │ ├── meteor.scala-2.scala.runner │ │ ├── meteor.scala-3.scala │ │ ├── meteor.scala-3.scala.runner │ │ ├── meteor.scala-4.scala │ │ ├── meteor.scala-4.scala.runner │ │ ├── meteor.scala.runner │ │ ├── methcall.scala │ │ ├── methcall.scala.runner │ │ ├── nsieve.scala-4.check │ │ ├── nsieve.scala-4.scala │ │ ├── nsieve.scala-4.scala.runner │ │ ├── pidigits.check │ │ ├── pidigits.scala │ │ ├── pidigits.scala.runner │ │ ├── prodcons.scala │ │ ├── prodcons.scala.runner │ │ ├── random.scala │ │ ├── random.scala.runner │ │ ├── revcomp.scala-2.check │ │ ├── revcomp.scala-2.scala │ │ ├── revcomp.scala-2.scala.runner │ │ ├── revcomp.scala-3.check │ │ ├── revcomp.scala-3.scala │ │ ├── revcomp.scala-3.scala.runner │ │ ├── sieve.scala │ │ └── sieve.scala.runner │ ├── specialized │ │ ├── SI-5005.check │ │ └── SI-5005.scala │ ├── t7629-view-bounds-removal.check │ ├── t7629-view-bounds-removal.flags │ ├── t7629-view-bounds-removal.scala │ ├── typetags_typeof_x.check │ └── typetags_typeof_x.scala ├── scaladoc │ ├── javascript │ │ ├── package.html │ │ ├── test-index.html │ │ └── test-index.js │ ├── resources │ │ ├── SI-3314-diagrams.scala │ │ ├── SI-3314.scala │ │ ├── SI-4014_0.scala │ │ ├── SI-4014_1.scala │ │ ├── SI-4014_2.scala │ │ ├── SI-4360.scala │ │ ├── SI-5558.scala │ │ ├── SI-5784.scala │ │ ├── SI-6509.scala │ │ ├── SI-6511.scala │ │ ├── SI-8144.scala │ │ ├── SI-8514.scala │ │ ├── SI_4287.scala │ │ ├── SI_4421.scala │ │ ├── SI_4507.scala │ │ ├── SI_4589.scala │ │ ├── SI_4641.scala │ │ ├── SI_4715.scala │ │ ├── SI_4898.scala │ │ ├── SI_5054_q1.scala │ │ ├── SI_5054_q2.scala │ │ ├── SI_5054_q3.scala │ │ ├── SI_5054_q4.scala │ │ ├── SI_5054_q5.scala │ │ ├── SI_5054_q6.scala │ │ ├── SI_5054_q7.scala │ │ ├── SI_5287.scala │ │ ├── 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 │ │ └── package-object-res.scala │ ├── run │ │ ├── SI-191.check │ │ ├── SI-191.scala │ │ ├── SI-3314-diagrams.check │ │ ├── SI-3314-diagrams.scala │ │ ├── SI-3314.check │ │ ├── SI-3314.scala │ │ ├── SI-3448.check │ │ ├── SI-3448.scala │ │ ├── SI-3484.check │ │ ├── SI-3484.scala │ │ ├── SI-4324.check │ │ ├── SI-4324.scala │ │ ├── SI-4360.check │ │ ├── SI-4360.scala │ │ ├── SI-4676.check │ │ ├── SI-4676.scala │ │ ├── SI-4887.check │ │ ├── SI-4887.scala │ │ ├── SI-5235.check │ │ ├── SI-5235.scala │ │ ├── SI-5373.check │ │ ├── SI-5373.scala │ │ ├── SI-5533.check │ │ ├── SI-5533.scala │ │ ├── SI-5780.check │ │ ├── SI-5780.scala │ │ ├── SI-5784.check │ │ ├── SI-5784.scala │ │ ├── SI-5933.check │ │ ├── SI-5933.scala │ │ ├── SI-5965.check │ │ ├── SI-5965.scala │ │ ├── SI-6017.check │ │ ├── SI-6017.scala │ │ ├── SI-6140.check │ │ ├── SI-6140.scala │ │ ├── SI-6509.check │ │ ├── SI-6509.scala │ │ ├── SI-6511.check │ │ ├── SI-6511.scala │ │ ├── SI-6580.check │ │ ├── SI-6580.scala │ │ ├── SI-6715.check │ │ ├── SI-6715.scala │ │ ├── SI-6812.check │ │ ├── SI-6812.scala │ │ ├── SI-6812b.check │ │ ├── SI-6812b.scala │ │ ├── SI-7367.check │ │ ├── SI-7367.scala │ │ ├── SI-8479.check │ │ ├── SI-8479.scala │ │ ├── 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 │ │ ├── links.check │ │ ├── links.scala │ │ ├── package-object.check │ │ ├── package-object.scala │ │ ├── t4922.check │ │ ├── t4922.scala │ │ ├── t5527.check │ │ ├── t5527.scala │ │ ├── t5730.check │ │ ├── t5730.scala │ │ ├── t6626.check │ │ ├── t6626.scala │ │ ├── t7124.check │ │ ├── t7124.scala │ │ ├── t7767.check │ │ ├── t7767.scala │ │ ├── t7876.check │ │ ├── t7876.scala │ │ ├── t7876b.check │ │ ├── t7876b.scala │ │ ├── t8113.check │ │ ├── t8113.scala │ │ ├── t8314.check │ │ ├── t8314.scala │ │ ├── t8407.check │ │ ├── t8407.scala │ │ ├── t8557.check │ │ ├── t8557.scala │ │ ├── t8672.check │ │ ├── t8672.scala │ │ ├── usecase-var-expansion.check │ │ └── usecase-var-expansion.scala │ └── scalacheck │ │ ├── CommentFactoryTest.scala │ │ ├── HtmlFactoryTest.flags │ │ ├── HtmlFactoryTest.scala │ │ ├── IndexScriptTest.scala │ │ └── IndexTest.scala ├── script-tests │ ├── README │ └── jar-manifest │ │ ├── resources │ │ └── MANIFEST.MF │ │ ├── run-test │ │ ├── run-test.check │ │ └── src │ │ └── jar-test.scala ├── simplejson │ ├── __init__.py │ ├── decoder.py │ ├── encoder.py │ ├── scanner.py │ └── tool.py └── support │ ├── annotations │ ├── NestedAnnotations.java │ ├── OuterEnum.java │ ├── OuterTParams.java │ ├── SourceAnnotation.java │ └── mkAnnotationsJar.sh │ └── java-tests.txt ├── tools ├── abspath ├── binary-repo-lib.sh ├── class-dump ├── cleanup-commit ├── codegen ├── codegen-anyvals ├── compare-java-sigs ├── cpof ├── deploy-local-maven-snapshot ├── get-scala-commit-date ├── get-scala-commit-date.bat ├── get-scala-commit-sha ├── get-scala-commit-sha.bat ├── jar-dump ├── new-starr ├── partest-ack ├── partest-paths ├── pathResolver ├── push.jar.desired.sha1 ├── rm-orphan-checkfiles ├── scaladoc-compare ├── stability-test.sh └── verify-jar-cache └── versions.properties /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreVanDelft/scala/HEAD/.mailmap -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreVanDelft/scala/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreVanDelft/scala/HEAD/README.md -------------------------------------------------------------------------------- /docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreVanDelft/scala/HEAD/docs/TODO -------------------------------------------------------------------------------- /scala.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreVanDelft/scala/HEAD/scala.iml -------------------------------------------------------------------------------- /src/jline/target/streams/$global/compilers/$global/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/jline/target/streams/$global/ivy-sbt/$global/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/jline/target/streams/$global/project-descriptors/$global/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/jline/target/streams/compile/$global/$global/data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/jline/target/streams/compile/compile-inputs/$global/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/subscript-akka/build.abt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/subscript-supplements/bin/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/subscript-supplements/build.abt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/subscript-swing/build.abt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ant/test-basic/src/test-1.scala: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/debug/OBSOLETE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/debug/buildmanager/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/debug/jvm/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/debug/neg/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/debug/pos/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/debug/res/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/debug/run/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/debug/scalacheck/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/debug/scalap/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/debug/shootout/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/disabled-windows/script/loadAndExecute.check: -------------------------------------------------------------------------------- 1 | List(hello, world) 2 | -------------------------------------------------------------------------------- /test/disabled-windows/script/loadAndExecute/lAndE2.scala: -------------------------------------------------------------------------------- 1 | import Bop._ 2 | -------------------------------------------------------------------------------- /test/disabled-windows/script/utf8.check: -------------------------------------------------------------------------------- 1 | QWERTY 2 | ЙЦУКЕН 3 | -------------------------------------------------------------------------------- /test/disabled/buildmanager/t2651_1/A.scala: -------------------------------------------------------------------------------- 1 | trait A[T] 2 | -------------------------------------------------------------------------------- /test/disabled/pos/caseclass-parents.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental -------------------------------------------------------------------------------- /test/disabled/pos/caseclass-productN.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental -------------------------------------------------------------------------------- /test/disabled/pos/t1737/B.java: -------------------------------------------------------------------------------- 1 | public abstract class B implements A {} -------------------------------------------------------------------------------- /test/disabled/presentation/simple-tests.javaopts: -------------------------------------------------------------------------------- 1 | -Dfile.encoding=UTF-8 -------------------------------------------------------------------------------- /test/disabled/run/syncchannel.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/disabled/run/t6987.check: -------------------------------------------------------------------------------- 1 | got successful verbose results! 2 | -------------------------------------------------------------------------------- /test/disabled/script/fact.args: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /test/disabled/script/fact.check: -------------------------------------------------------------------------------- 1 | fact(5) = 120 2 | -------------------------------------------------------------------------------- /test/files/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.obj/ 3 | -------------------------------------------------------------------------------- /test/files/instrumented/t6611.check: -------------------------------------------------------------------------------- 1 | Method call statistics: 2 | -------------------------------------------------------------------------------- /test/files/jvm/actor-exceptions.check: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/files/jvm/actor-getstate.check: -------------------------------------------------------------------------------- 1 | OK 2 | OK 3 | -------------------------------------------------------------------------------- /test/files/jvm/actor-link-getstate.check: -------------------------------------------------------------------------------- 1 | Done 2 | Terminated 3 | -------------------------------------------------------------------------------- /test/files/jvm/actor-uncaught-exception.check: -------------------------------------------------------------------------------- 1 | OK 2 | OK 3 | -------------------------------------------------------------------------------- /test/files/jvm/bytecode-test-example.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/files/jvm/bytecode-test-example/Foo_1.flags: -------------------------------------------------------------------------------- 1 | -Ybackend:GenASM 2 | -------------------------------------------------------------------------------- /test/files/jvm/constant-optimization/Foo_1.flags: -------------------------------------------------------------------------------- 1 | -Ynooptimise -Yconst-opt -------------------------------------------------------------------------------- /test/files/jvm/daemon-actor-termination.check: -------------------------------------------------------------------------------- 1 | MSG1 2 | MSG2 3 | -------------------------------------------------------------------------------- /test/files/jvm/future-awaitall-zero.check: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/files/jvm/future-termination.check: -------------------------------------------------------------------------------- 1 | I can't wait that long, bye. 2 | -------------------------------------------------------------------------------- /test/files/jvm/methvsfield.check: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /test/files/jvm/natives.check: -------------------------------------------------------------------------------- 1 | Invocation returned "Scala is great!" 2 | -------------------------------------------------------------------------------- /test/files/jvm/outerEnum.check: -------------------------------------------------------------------------------- 1 | Bar 2 | -------------------------------------------------------------------------------- /test/files/jvm/patmat_opt_ignore_underscore.check: -------------------------------------------------------------------------------- 1 | bytecode identical 2 | -------------------------------------------------------------------------------- /test/files/jvm/patmat_opt_ignore_underscore.flags: -------------------------------------------------------------------------------- 1 | -optimize -------------------------------------------------------------------------------- /test/files/jvm/patmat_opt_no_nullcheck.check: -------------------------------------------------------------------------------- 1 | bytecode identical 2 | -------------------------------------------------------------------------------- /test/files/jvm/patmat_opt_no_nullcheck.flags: -------------------------------------------------------------------------------- 1 | -optimize -------------------------------------------------------------------------------- /test/files/jvm/patmat_opt_primitive_typetest.check: -------------------------------------------------------------------------------- 1 | bytecode identical 2 | -------------------------------------------------------------------------------- /test/files/jvm/patmat_opt_primitive_typetest.flags: -------------------------------------------------------------------------------- 1 | -optimize 2 | -------------------------------------------------------------------------------- /test/files/jvm/replyreactor-react-sender.check: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/files/jvm/replyreactor.check: -------------------------------------------------------------------------------- 1 | 'hello 2 | -------------------------------------------------------------------------------- /test/files/jvm/t0014.check: -------------------------------------------------------------------------------- 1 | test.NestedAnnotations 2 | -------------------------------------------------------------------------------- /test/files/jvm/t1143-2.check: -------------------------------------------------------------------------------- 1 | pass 2 | -------------------------------------------------------------------------------- /test/files/jvm/t1342.check: -------------------------------------------------------------------------------- 1 | one 2 | two 3 | -------------------------------------------------------------------------------- /test/files/jvm/t1449.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/files/jvm/t1464.check: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /test/files/jvm/t2359.check: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | -------------------------------------------------------------------------------- /test/files/jvm/t2470.check: -------------------------------------------------------------------------------- 1 | List(@Action(block=ACTION)) 2 | -------------------------------------------------------------------------------- /test/files/jvm/t2511.check: -------------------------------------------------------------------------------- 1 | null 2 | bippy 3 | -------------------------------------------------------------------------------- /test/files/jvm/t2570/Test3.java: -------------------------------------------------------------------------------- 1 | public class Test3 { 2 | } -------------------------------------------------------------------------------- /test/files/jvm/t2827.check: -------------------------------------------------------------------------------- 1 | Larry 2 | Curly 3 | Moe 4 | -------------------------------------------------------------------------------- /test/files/jvm/t3102.check: -------------------------------------------------------------------------------- 1 | 42 2 | OK 3 | -------------------------------------------------------------------------------- /test/files/jvm/t676.check: -------------------------------------------------------------------------------- 1 | RUNTIME 2 | -------------------------------------------------------------------------------- /test/files/jvm/t6941.check: -------------------------------------------------------------------------------- 1 | bytecode identical 2 | -------------------------------------------------------------------------------- /test/files/jvm/t6941.flags: -------------------------------------------------------------------------------- 1 | -optimize 2 | -------------------------------------------------------------------------------- /test/files/jvm/t6941/Analyzed_1.flags: -------------------------------------------------------------------------------- 1 | -nowarn 2 | -------------------------------------------------------------------------------- /test/files/jvm/t7006/Foo_1.flags: -------------------------------------------------------------------------------- 1 | -optimise -Ydebug -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/jvm/t7253.check: -------------------------------------------------------------------------------- 1 | bytecode identical 2 | -------------------------------------------------------------------------------- /test/files/jvm/unreachable/Foo_1.flags: -------------------------------------------------------------------------------- 1 | -Ynooptimise -------------------------------------------------------------------------------- /test/files/jvm/varargs.check: -------------------------------------------------------------------------------- 1 | 7 2 | 10 3 | 19 4 | a 5 | -------------------------------------------------------------------------------- /test/files/neg/abstract-explaintypes.flags: -------------------------------------------------------------------------------- 1 | -explaintypes 2 | -------------------------------------------------------------------------------- /test/files/neg/abstract-inaccessible.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -Xlint -------------------------------------------------------------------------------- /test/files/neg/aladdin1055.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/applydynamic_sip.flags: -------------------------------------------------------------------------------- 1 | -language:dynamics 2 | -------------------------------------------------------------------------------- /test/files/neg/bad-advice.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/badtok-1.scala: -------------------------------------------------------------------------------- 1 | // bug 989 2 | '42' 3 | -------------------------------------------------------------------------------- /test/files/neg/badtok-2.scala: -------------------------------------------------------------------------------- 1 | //bug 990 2 | object Test { 3 | `x 4 | -------------------------------------------------------------------------------- /test/files/neg/badtok-3.scala: -------------------------------------------------------------------------------- 1 | object Test { 2 | }xx 3 | } 4 | -------------------------------------------------------------------------------- /test/files/neg/t2442.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t2462b.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t2462c.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t2796.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t284.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t3098.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t3683a.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t3692-new.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t4091.scala: -------------------------------------------------------------------------------- 1 | private a 2 | class b 3 | -------------------------------------------------------------------------------- /test/files/neg/t4302.flags: -------------------------------------------------------------------------------- 1 | -unchecked -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t4425.flags: -------------------------------------------------------------------------------- 1 | -optimize -------------------------------------------------------------------------------- /test/files/neg/t4440.flags: -------------------------------------------------------------------------------- 1 | -unchecked -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t4584.scala: -------------------------------------------------------------------------------- 1 | class A { val \u2 -------------------------------------------------------------------------------- /test/files/neg/t4691_exhaust_extractor.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t4749.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t4762.flags: -------------------------------------------------------------------------------- 1 | -Xlint -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t4877.flags: -------------------------------------------------------------------------------- 1 | -Xlint -------------------------------------------------------------------------------- /test/files/neg/t5031/Id.scala: -------------------------------------------------------------------------------- 1 | package t5031 2 | 3 | object Test 4 | 5 | -------------------------------------------------------------------------------- /test/files/neg/t5031b/a.scala: -------------------------------------------------------------------------------- 1 | package foo 2 | 3 | class Bippy 4 | -------------------------------------------------------------------------------- /test/files/neg/t5031b/b.scala: -------------------------------------------------------------------------------- 1 | package foo 2 | 3 | object Bippy 4 | -------------------------------------------------------------------------------- /test/files/neg/t5063.scala: -------------------------------------------------------------------------------- 1 | class A { 2 | super.+("") 3 | } 4 | -------------------------------------------------------------------------------- /test/files/neg/t5182.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t5352.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t5426.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t5440.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t565.scala: -------------------------------------------------------------------------------- 1 | object test { 2 | var s0: String 3 | } 4 | -------------------------------------------------------------------------------- /test/files/neg/t5663-badwarneq.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t5675.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t5689.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/neg/t5753.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/neg/t5762.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t5830.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t593.scala: -------------------------------------------------------------------------------- 1 | trait Wrapper[T](x : T) { 2 | } 3 | -------------------------------------------------------------------------------- /test/files/neg/t5956.flags: -------------------------------------------------------------------------------- 1 | -deprecation 2 | -------------------------------------------------------------------------------- /test/files/neg/t6011.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t6040.scala: -------------------------------------------------------------------------------- 1 | class X extends Dynamic -------------------------------------------------------------------------------- /test/files/neg/t6048.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t6120.flags: -------------------------------------------------------------------------------- 1 | -feature -deprecation -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t6123-explaintypes-macros/BadMac_2.flags: -------------------------------------------------------------------------------- 1 | -explaintypes 2 | -------------------------------------------------------------------------------- /test/files/neg/t6123-explaintypes-macros/Macros.flags: -------------------------------------------------------------------------------- 1 | -explaintypes 2 | -------------------------------------------------------------------------------- /test/files/neg/t6162-inheritance.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -deprecation -------------------------------------------------------------------------------- /test/files/neg/t6162-overriding.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -deprecation -------------------------------------------------------------------------------- /test/files/neg/t6264.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t6276.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t6289.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t6323a.flags: -------------------------------------------------------------------------------- 1 | -Xlog-implicits -------------------------------------------------------------------------------- /test/files/neg/t6375.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t6406-regextract.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -deprecation 2 | -------------------------------------------------------------------------------- /test/files/neg/t6446-missing/sample_2.flags: -------------------------------------------------------------------------------- 1 | -Xplugin:. -Xshow-phases 2 | -------------------------------------------------------------------------------- /test/files/neg/t6446-show-phases.flags: -------------------------------------------------------------------------------- 1 | -Xshow-phases 2 | -------------------------------------------------------------------------------- /test/files/neg/t6455.flags: -------------------------------------------------------------------------------- 1 | -Xfuture -------------------------------------------------------------------------------- /test/files/neg/t6534.flags: -------------------------------------------------------------------------------- 1 | -Xlint 2 | -------------------------------------------------------------------------------- /test/files/neg/t6567.flags: -------------------------------------------------------------------------------- 1 | -Xlint -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t6582_exhaust_big.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -unchecked 2 | -------------------------------------------------------------------------------- /test/files/neg/t6666.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:inline 2 | -------------------------------------------------------------------------------- /test/files/neg/t6666c.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:inline 2 | -------------------------------------------------------------------------------- /test/files/neg/t6675.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xlint -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t6675b.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xlint 2 | -------------------------------------------------------------------------------- /test/files/neg/t668.scala: -------------------------------------------------------------------------------- 1 | class Test extends Iterable 2 | -------------------------------------------------------------------------------- /test/files/neg/t6680a.flags: -------------------------------------------------------------------------------- 1 | -Xstrict-inference -------------------------------------------------------------------------------- /test/files/neg/t6902.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t6963a.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -Xmigration:2.7 2 | -------------------------------------------------------------------------------- /test/files/neg/t7020.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t7110.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t7171.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -unchecked -------------------------------------------------------------------------------- /test/files/neg/t7171b.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -unchecked -------------------------------------------------------------------------------- /test/files/neg/t7285.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t7290.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t7292-deprecation.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -deprecation 2 | -------------------------------------------------------------------------------- /test/files/neg/t7292-removal.flags: -------------------------------------------------------------------------------- 1 | -Xfuture 2 | -------------------------------------------------------------------------------- /test/files/neg/t7294.flags: -------------------------------------------------------------------------------- 1 | -Xfuture -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t7294b.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t7294b.scala: -------------------------------------------------------------------------------- 1 | class C extends Tuple2[Int, Int](0, 0) -------------------------------------------------------------------------------- /test/files/neg/t7369.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t7388.scala: -------------------------------------------------------------------------------- 1 | class Test private[doesnotexist]() 2 | -------------------------------------------------------------------------------- /test/files/neg/t7669.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t7721.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t7756b.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t7757a.scala: -------------------------------------------------------------------------------- 1 | trait Foo @annot -------------------------------------------------------------------------------- /test/files/neg/t7757b.scala: -------------------------------------------------------------------------------- 1 | trait Foo2 2 | @annot2 -------------------------------------------------------------------------------- /test/files/neg/t7783.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t7984.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t8015-ffb.flags: -------------------------------------------------------------------------------- 1 | -Xlint -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t8035-deprecated.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t8035-no-adapted-args.flags: -------------------------------------------------------------------------------- 1 | -Yno-adapted-args -------------------------------------------------------------------------------- /test/files/neg/t8035-removed.flags: -------------------------------------------------------------------------------- 1 | -Xfuture 2 | -------------------------------------------------------------------------------- /test/files/neg/t8265.scala: -------------------------------------------------------------------------------- 1 | class Foo[+CC[X]] { type Coll = CC[_] } 2 | -------------------------------------------------------------------------------- /test/files/neg/t8450.flags: -------------------------------------------------------------------------------- 1 | -Ywarn-numeric-widen -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t8597.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t8597b.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/t8610-arg.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -Xlint nullary-unit 2 | -------------------------------------------------------------------------------- /test/files/neg/t8610.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -Xlint 2 | -------------------------------------------------------------------------------- /test/files/neg/t8731.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/t8764.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/neg/unchecked-abstract.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/unchecked-impossible.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/unchecked-knowable.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/unchecked-refinement.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/unchecked-suppress.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/unchecked.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -unchecked -------------------------------------------------------------------------------- /test/files/neg/unchecked2.flags: -------------------------------------------------------------------------------- 1 | -unchecked -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/unchecked3.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/unit-returns-value.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/unreachablechar.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/virtpatmat_exhaust_compound.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/virtpatmat_reach_null.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/virtpatmat_reach_sealed_unsealed.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/neg/virtpatmat_unreach_select.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/neg/xmltruncated7.scala: -------------------------------------------------------------------------------- 1 | object Test { 2 |

foo}:

3 | } -------------------------------------------------------------------------------- /test/files/pos/SI-7060.flags: -------------------------------------------------------------------------------- 1 | -Yinline -Ydead-code 2 | -------------------------------------------------------------------------------- /test/files/pos/annotated-treecopy.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/pos/attachments-typed-ident.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/pos/classtag-pos.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos 2 | -------------------------------------------------------------------------------- /test/files/pos/comp-rec-test.flags: -------------------------------------------------------------------------------- 1 | -Yrecursion 1 2 | -------------------------------------------------------------------------------- /test/files/pos/cycle-jsoup.flags: -------------------------------------------------------------------------------- 1 | -Ybreak-cycles 2 | -------------------------------------------------------------------------------- /test/files/pos/cycle.flags: -------------------------------------------------------------------------------- 1 | -Ybreak-cycles 2 | -------------------------------------------------------------------------------- /test/files/pos/debug-reset-local-attrs.flags: -------------------------------------------------------------------------------- 1 | -Ydebug 2 | -------------------------------------------------------------------------------- /test/files/pos/debug-reset-local-attrs.scala: -------------------------------------------------------------------------------- 1 | case class FT(f : Float) 2 | -------------------------------------------------------------------------------- /test/files/pos/delambdafy_t6260_method.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:method 2 | -------------------------------------------------------------------------------- /test/files/pos/dotless-targs.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos:false 2 | -------------------------------------------------------------------------------- /test/files/pos/exhaust_alternatives.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/generic-sigs.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/hk-match/b.scala: -------------------------------------------------------------------------------- 1 | trait Bippy[E[X]] 2 | -------------------------------------------------------------------------------- /test/files/pos/hkarray.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -language:higherKinds -------------------------------------------------------------------------------- /test/files/pos/implicit-anyval-2.10.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.10 2 | -------------------------------------------------------------------------------- /test/files/pos/infersingle.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental -------------------------------------------------------------------------------- /test/files/pos/inliner2.flags: -------------------------------------------------------------------------------- 1 | -optimise -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/list-optim-check.flags: -------------------------------------------------------------------------------- 1 | -optimize 2 | -------------------------------------------------------------------------------- /test/files/pos/macro-bundle-disambiguate-bundle.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/macro-bundle-disambiguate-nonbundle.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/macro-implicit-invalidate-on-error.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/native-warning.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -deprecation -------------------------------------------------------------------------------- /test/files/pos/nonlocal-unchecked.flags: -------------------------------------------------------------------------------- 1 | -unchecked -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/pos/override-object-yes.flags: -------------------------------------------------------------------------------- 1 | -Yoverride-objects -------------------------------------------------------------------------------- /test/files/pos/package-ob-case.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/pos/patmat-suppress.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -Xno-patmat-analysis -------------------------------------------------------------------------------- /test/files/pos/polymorphic-case-class.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -unchecked -------------------------------------------------------------------------------- /test/files/pos/proj-rec-test.flags: -------------------------------------------------------------------------------- 1 | -Yrecursion 1 2 | -------------------------------------------------------------------------------- /test/files/pos/rangepos-anonapply.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos 2 | -------------------------------------------------------------------------------- /test/files/pos/rangepos-patmat.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos 2 | -------------------------------------------------------------------------------- /test/files/pos/rangepos.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos -------------------------------------------------------------------------------- /test/files/pos/reflection-compat-api-universe.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/reflection-compat-c.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/reflection-compat-macro-universe.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/reflection-compat-ru.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/sammy_exist.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/sammy_overload.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/sammy_override.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/sammy_poly.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/sammy_scope.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/sammy_single.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/sammy_twice.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/setter-not-implicit.flags: -------------------------------------------------------------------------------- 1 | -feature -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t0123.scala: -------------------------------------------------------------------------------- 1 | class M{ 2 | val 1 = 1; 3 | } 4 | -------------------------------------------------------------------------------- /test/files/pos/t0774/deathname.scala: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/t1101/J.java: -------------------------------------------------------------------------------- 1 | class J { enum E { E1 } } 2 | -------------------------------------------------------------------------------- /test/files/pos/t1102/S.scala: -------------------------------------------------------------------------------- 1 | class S(j:J) { j.foo(J.E.E1) } 2 | -------------------------------------------------------------------------------- /test/files/pos/t1176/S.scala: -------------------------------------------------------------------------------- 1 | class S { new J } 2 | -------------------------------------------------------------------------------- /test/files/pos/t1196/S.scala: -------------------------------------------------------------------------------- 1 | object S { J.foo(null) } 2 | -------------------------------------------------------------------------------- /test/files/pos/t1197/J.java: -------------------------------------------------------------------------------- 1 | class J { interface K { } } 2 | 3 | -------------------------------------------------------------------------------- /test/files/pos/t1197/S.scala: -------------------------------------------------------------------------------- 1 | object S extends J.K 2 | 3 | -------------------------------------------------------------------------------- /test/files/pos/t1203b/J.java: -------------------------------------------------------------------------------- 1 | interface J { int j = 200 ; } 2 | -------------------------------------------------------------------------------- /test/files/pos/t1203b/S.scala: -------------------------------------------------------------------------------- 1 | object S { J.j } 2 | -------------------------------------------------------------------------------- /test/files/pos/t1230/J.java: -------------------------------------------------------------------------------- 1 | class J { public int foo ; } 2 | -------------------------------------------------------------------------------- /test/files/pos/t1230/S.scala: -------------------------------------------------------------------------------- 1 | object S extends App { (new J).foo = 5 } 2 | -------------------------------------------------------------------------------- /test/files/pos/t1231/J.java: -------------------------------------------------------------------------------- 1 | enum J { j1 } 2 | -------------------------------------------------------------------------------- /test/files/pos/t1231/S.scala: -------------------------------------------------------------------------------- 1 | object S extends App { println(J.j1) } 2 | -------------------------------------------------------------------------------- /test/files/pos/t1232/J2.java: -------------------------------------------------------------------------------- 1 | import s.S; 2 | class J2 { } 3 | -------------------------------------------------------------------------------- /test/files/pos/t1232/S.scala: -------------------------------------------------------------------------------- 1 | package s 2 | class S { j.J.E.e1 } 3 | -------------------------------------------------------------------------------- /test/files/pos/t1751/A2_1.scala: -------------------------------------------------------------------------------- 1 | @SuiteClasses(Array()) 2 | class A2 3 | -------------------------------------------------------------------------------- /test/files/pos/t1803.flags: -------------------------------------------------------------------------------- 1 | -Yinfer-argument-types -------------------------------------------------------------------------------- /test/files/pos/t1836/S.scala: -------------------------------------------------------------------------------- 1 | class S extends J("") 2 | -------------------------------------------------------------------------------- /test/files/pos/t1840/S.scala: -------------------------------------------------------------------------------- 1 | package p 2 | class S { new J } 3 | -------------------------------------------------------------------------------- /test/files/pos/t1896/D1.scala: -------------------------------------------------------------------------------- 1 | package p 2 | class C extends B 3 | -------------------------------------------------------------------------------- /test/files/pos/t2066-2.10-compat.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.10 2 | -------------------------------------------------------------------------------- /test/files/pos/t2171.flags: -------------------------------------------------------------------------------- 1 | -optimise -------------------------------------------------------------------------------- /test/files/pos/t2409/t2409.scala: -------------------------------------------------------------------------------- 1 | object S { new J(null) } -------------------------------------------------------------------------------- /test/files/pos/t2708.scala: -------------------------------------------------------------------------------- 1 | class Foo(@volatile var v: Int) 2 | -------------------------------------------------------------------------------- /test/files/pos/t2799.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t3252.flags: -------------------------------------------------------------------------------- 1 | -optimise -------------------------------------------------------------------------------- /test/files/pos/t3420.flags: -------------------------------------------------------------------------------- 1 | -optimise -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t3430.flags: -------------------------------------------------------------------------------- 1 | -optimise -------------------------------------------------------------------------------- /test/files/pos/t3495.flags: -------------------------------------------------------------------------------- 1 | -Dsoot.class.path=bin:. 2 | -------------------------------------------------------------------------------- /test/files/pos/t3495.scala: -------------------------------------------------------------------------------- 1 | class Foo { } 2 | 3 | -------------------------------------------------------------------------------- /test/files/pos/t3642/t3642_2.scala: -------------------------------------------------------------------------------- 1 | object T { 2 | Tuppel_1.get 3 | } -------------------------------------------------------------------------------- /test/files/pos/t3864/scalaz_2.scala: -------------------------------------------------------------------------------- 1 | object Scalaz extends Tuples -------------------------------------------------------------------------------- /test/files/pos/t3960.flags: -------------------------------------------------------------------------------- 1 | -Ycheck:typer -------------------------------------------------------------------------------- /test/files/pos/t4020.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/pos/t4494.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos 2 | -------------------------------------------------------------------------------- /test/files/pos/t4494.scala: -------------------------------------------------------------------------------- 1 | object A { 2 | List(1) 3 | } 4 | -------------------------------------------------------------------------------- /test/files/pos/t4579.flags: -------------------------------------------------------------------------------- 1 | -optimize -------------------------------------------------------------------------------- /test/files/pos/t4649.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t4744.flags: -------------------------------------------------------------------------------- 1 | -Ybreak-cycles 2 | -------------------------------------------------------------------------------- /test/files/pos/t4840.flags: -------------------------------------------------------------------------------- 1 | -optimise -------------------------------------------------------------------------------- /test/files/pos/t4911.flags: -------------------------------------------------------------------------------- 1 | -unchecked -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t5029.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t5031/Id.scala: -------------------------------------------------------------------------------- 1 | package t5031 2 | 3 | object ID 4 | 5 | -------------------------------------------------------------------------------- /test/files/pos/t5175.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t5542.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -unchecked -------------------------------------------------------------------------------- /test/files/pos/t5639.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.12 2 | -------------------------------------------------------------------------------- /test/files/pos/t5692a.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/pos/t5692b.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/pos/t5706.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/pos/t5809.flags: -------------------------------------------------------------------------------- 1 | -Xlint -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t5897.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t5899.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t5930.flags: -------------------------------------------------------------------------------- 1 | -Ywarn-dead-code -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t5932.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t5954c.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/pos/t5954d.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -Xdev 2 | -------------------------------------------------------------------------------- /test/files/pos/t5968.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t6008.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t6022.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t6047.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/pos/t6091.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -Xlint 2 | -------------------------------------------------------------------------------- /test/files/pos/t6123-explaintypes-implicits.flags: -------------------------------------------------------------------------------- 1 | -explaintypes 2 | -------------------------------------------------------------------------------- /test/files/pos/t6146.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t6157.flags: -------------------------------------------------------------------------------- 1 | -optimize 2 | -------------------------------------------------------------------------------- /test/files/pos/t6162-inheritance.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/pos/t6169/OP.java: -------------------------------------------------------------------------------- 1 | public abstract class OP { } 2 | -------------------------------------------------------------------------------- /test/files/pos/t6210.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t6260.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:inline 2 | -------------------------------------------------------------------------------- /test/files/pos/t6275.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/pos/t6537.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/pos/t6547.flags: -------------------------------------------------------------------------------- 1 | -optimise 2 | -------------------------------------------------------------------------------- /test/files/pos/t6595.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/pos/t6675.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t6771.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t6891.flags: -------------------------------------------------------------------------------- 1 | -Ycheck:extmethods -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t6896.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/pos/t6942.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t6963c.flags: -------------------------------------------------------------------------------- 1 | -Xmigration:2.9 -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t6994.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t7011.flags: -------------------------------------------------------------------------------- 1 | -Ydebug -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t7183.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t7232.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t7232b.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t7232c.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t7232d.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t7285a.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t7315.flags: -------------------------------------------------------------------------------- 1 | -deprecation -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t7369.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/pos/t7427.flags: -------------------------------------------------------------------------------- 1 | -Ydebug 2 | -------------------------------------------------------------------------------- /test/files/pos/t7433.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t757a.scala: -------------------------------------------------------------------------------- 1 | package foo 2 | -------------------------------------------------------------------------------- /test/files/pos/t7649.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos -------------------------------------------------------------------------------- /test/files/pos/t7750.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -feature 2 | -------------------------------------------------------------------------------- /test/files/pos/t7776.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/t7864.flags: -------------------------------------------------------------------------------- 1 | -Xlint -------------------------------------------------------------------------------- /test/files/pos/t8001.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/t8001.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t8013.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -Xlint:-infer-any,_ 2 | -------------------------------------------------------------------------------- /test/files/pos/t8062.flags: -------------------------------------------------------------------------------- 1 | -optimize 2 | -------------------------------------------------------------------------------- /test/files/pos/t8064.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos 2 | -------------------------------------------------------------------------------- /test/files/pos/t8064b.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos 2 | -------------------------------------------------------------------------------- /test/files/pos/t8157-2.10.flags: -------------------------------------------------------------------------------- 1 | -Xsource:2.10 2 | -------------------------------------------------------------------------------- /test/files/pos/t8187.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/t8209a.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/t8209b.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/t8306.flags: -------------------------------------------------------------------------------- 1 | -optimize 2 | -------------------------------------------------------------------------------- /test/files/pos/t8310.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/t8315.flags: -------------------------------------------------------------------------------- 1 | -Yinline -Ydead-code 2 | -------------------------------------------------------------------------------- /test/files/pos/t8315b.flags: -------------------------------------------------------------------------------- 1 | -Yinline -Ydead-code 2 | -------------------------------------------------------------------------------- /test/files/pos/t8352.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/t8363.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:method 2 | -------------------------------------------------------------------------------- /test/files/pos/t8364.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/t8369a.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/t8369b.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/t8497/B_2.scala: -------------------------------------------------------------------------------- 1 | package p { object Test { Crash } } 2 | -------------------------------------------------------------------------------- /test/files/pos/t8523.flags: -------------------------------------------------------------------------------- 1 | -Ywarn-dead-code -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/t8546.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/pos/t8578.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:method 2 | -------------------------------------------------------------------------------- /test/files/pos/t8596.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos 2 | -------------------------------------------------------------------------------- /test/files/pos/t8617.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos 2 | -------------------------------------------------------------------------------- /test/files/pos/t8719.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/pos/t8736-b.flags: -------------------------------------------------------------------------------- 1 | -feature -language:_ -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/pos/t8828.flags: -------------------------------------------------------------------------------- 1 | -Xlint:inaccessible -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/pos/t8868a/Sub_2.scala: -------------------------------------------------------------------------------- 1 | class Sub extends T 2 | -------------------------------------------------------------------------------- /test/files/pos/t8868b/Sub_2.scala: -------------------------------------------------------------------------------- 1 | class Sub extends T 2 | 3 | -------------------------------------------------------------------------------- /test/files/pos/t8868c/Sub_2.scala: -------------------------------------------------------------------------------- 1 | class Sub extends T 2 | 3 | -------------------------------------------------------------------------------- /test/files/pos/t8947/Client_2.scala: -------------------------------------------------------------------------------- 1 | object Test { X.extractor } -------------------------------------------------------------------------------- /test/files/pos/t8954.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -deprecation 2 | -------------------------------------------------------------------------------- /test/files/pos/t8965.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/pos/t8999.flags: -------------------------------------------------------------------------------- 1 | -nowarn -------------------------------------------------------------------------------- /test/files/pos/trait-force-info.flags: -------------------------------------------------------------------------------- 1 | -optimise -------------------------------------------------------------------------------- /test/files/pos/unchecked-a.flags: -------------------------------------------------------------------------------- 1 | -unchecked -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/pos/value-class-override-no-spec.flags: -------------------------------------------------------------------------------- 1 | -no-specialization -------------------------------------------------------------------------------- /test/files/pos/virtpatmat_alts_subst.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/virtpatmat_binding_opt.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/virtpatmat_castbinder.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/virtpatmat_exhaust_unchecked.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/pos/virtpatmat_exist1.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/virtpatmat_exist2.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/virtpatmat_exist3.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/virtpatmat_gadt_array.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/virtpatmat_infer_single_1.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/virtpatmat_instof_valuetype.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/virtpatmat_obj_in_case.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/pos/xlint1.flags: -------------------------------------------------------------------------------- 1 | -Xlint -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/pos/z1730.flags: -------------------------------------------------------------------------------- 1 | -Ycheck:all -------------------------------------------------------------------------------- /test/files/positions/Empty.scala: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/positions/Enclosing4.scala: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /test/files/positions/New1.scala: -------------------------------------------------------------------------------- 1 | class New1 { 2 | val a = new 3 | } 4 | -------------------------------------------------------------------------------- /test/files/presentation/doc/src/Class.scala: -------------------------------------------------------------------------------- 1 | object Class -------------------------------------------------------------------------------- /test/files/presentation/ide-t1000976.check: -------------------------------------------------------------------------------- 1 | Test OK -------------------------------------------------------------------------------- /test/files/presentation/ide-t1000976.flags: -------------------------------------------------------------------------------- 1 | -sourcepath src -------------------------------------------------------------------------------- /test/files/presentation/ide-t1001388.check: -------------------------------------------------------------------------------- 1 | Test OK -------------------------------------------------------------------------------- /test/files/presentation/private-case-class-members.check: -------------------------------------------------------------------------------- 1 | Test OK 2 | -------------------------------------------------------------------------------- /test/files/presentation/quasiquotes.flags: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/presentation/t4287c.flags: -------------------------------------------------------------------------------- 1 | -Yinfer-argument-types -------------------------------------------------------------------------------- /test/files/presentation/t7548.check: -------------------------------------------------------------------------------- 1 | (x: Int)Unit 2 | -------------------------------------------------------------------------------- /test/files/presentation/t7678.check: -------------------------------------------------------------------------------- 1 | reload: TypeTag.scala 2 | -------------------------------------------------------------------------------- /test/files/presentation/t8085.flags: -------------------------------------------------------------------------------- 1 | -sourcepath src 2 | -------------------------------------------------------------------------------- /test/files/presentation/t8085b.flags: -------------------------------------------------------------------------------- 1 | -sourcepath src 2 | -------------------------------------------------------------------------------- /test/files/presentation/t8934.check: -------------------------------------------------------------------------------- 1 | reload: Source.scala 2 | Test OK 3 | -------------------------------------------------------------------------------- /test/files/run/all-overridden.check: -------------------------------------------------------------------------------- 1 | method g 2 | -------------------------------------------------------------------------------- /test/files/run/amp.check: -------------------------------------------------------------------------------- 1 | g called 2 | 42 3 | 1 4 | -------------------------------------------------------------------------------- /test/files/run/arybufgrow.check: -------------------------------------------------------------------------------- 1 | 1000 = 1000 2 | -------------------------------------------------------------------------------- /test/files/run/backreferences.check: -------------------------------------------------------------------------------- 1 | false 2 | true 3 | -------------------------------------------------------------------------------- /test/files/run/blame_eye_triple_eee-double.flags: -------------------------------------------------------------------------------- 1 | -optimise 2 | -------------------------------------------------------------------------------- /test/files/run/blame_eye_triple_eee-float.flags: -------------------------------------------------------------------------------- 1 | -optimise 2 | -------------------------------------------------------------------------------- /test/files/run/breakout.check: -------------------------------------------------------------------------------- 1 | 2, 3, 4 2 | -------------------------------------------------------------------------------- /test/files/run/bridges.javaopts: -------------------------------------------------------------------------------- 1 | -Xss128M 2 | -------------------------------------------------------------------------------- /test/files/run/buffer-slice.check: -------------------------------------------------------------------------------- 1 | ArrayBuffer() 2 | -------------------------------------------------------------------------------- /test/files/run/case-class-23.check: -------------------------------------------------------------------------------- 1 | 23 2 | (1,23) 3 | -------------------------------------------------------------------------------- /test/files/run/caseclasses.check: -------------------------------------------------------------------------------- 1 | OK 2 | creating C(hi) 3 | OK 4 | -------------------------------------------------------------------------------- /test/files/run/castsingleton.check: -------------------------------------------------------------------------------- 1 | L() 2 | L() 3 | -------------------------------------------------------------------------------- /test/files/run/checked.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit -nowarn 2 | -------------------------------------------------------------------------------- /test/files/run/classmanifests_new_alias.check: -------------------------------------------------------------------------------- 1 | Int 2 | true 3 | -------------------------------------------------------------------------------- /test/files/run/classmanifests_new_core.check: -------------------------------------------------------------------------------- 1 | Int 2 | true 3 | -------------------------------------------------------------------------------- /test/files/run/classtags_contextbound.check: -------------------------------------------------------------------------------- 1 | class [I 2 | -------------------------------------------------------------------------------- /test/files/run/constant-optimization.flags: -------------------------------------------------------------------------------- 1 | -optimise 2 | -------------------------------------------------------------------------------- /test/files/run/ctor-order.check: -------------------------------------------------------------------------------- 1 | 10 2 | 10 3 | -------------------------------------------------------------------------------- /test/files/run/dead-code-elimination.flags: -------------------------------------------------------------------------------- 1 | -optimize 2 | -------------------------------------------------------------------------------- /test/files/run/delambdafy-nested-by-name.check: -------------------------------------------------------------------------------- 1 | hello 2 | world 3 | -------------------------------------------------------------------------------- /test/files/run/delambdafy-two-lambdas.check: -------------------------------------------------------------------------------- 1 | 13 2 | 24 3 | -------------------------------------------------------------------------------- /test/files/run/deprecate-early-type-defs.flags: -------------------------------------------------------------------------------- 1 | -deprecation -------------------------------------------------------------------------------- /test/files/run/distinct.check: -------------------------------------------------------------------------------- 1 | abcdefghijklmnopqrstuvwxyz 2 | -------------------------------------------------------------------------------- /test/files/run/duplicate-meth.check: -------------------------------------------------------------------------------- 1 | verified! 2 | -------------------------------------------------------------------------------- /test/files/run/elidable-opt.flags: -------------------------------------------------------------------------------- 1 | -optimise -Xelide-below 900 2 | -------------------------------------------------------------------------------- /test/files/run/elidable.flags: -------------------------------------------------------------------------------- 1 | -Xelide-below 900 2 | -------------------------------------------------------------------------------- /test/files/run/empty-array.check: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | 0 4 | -------------------------------------------------------------------------------- /test/files/run/emptypf.check: -------------------------------------------------------------------------------- 1 | 100 2 | 3 3 | false 4 | -------------------------------------------------------------------------------- /test/files/run/eta-expand-star.check: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /test/files/run/eta-expand-star2.flags: -------------------------------------------------------------------------------- 1 | -Yeta-expand-keeps-star -------------------------------------------------------------------------------- /test/files/run/exceptions.check: -------------------------------------------------------------------------------- 1 | ok: lookup(2000) = KO 2 | -------------------------------------------------------------------------------- /test/files/run/finalvar.flags: -------------------------------------------------------------------------------- 1 | -Yoverride-vars -Yinline -------------------------------------------------------------------------------- /test/files/run/freetypes_false_alarm1.check: -------------------------------------------------------------------------------- 1 | scala.List[Int] 2 | -------------------------------------------------------------------------------- /test/files/run/freetypes_false_alarm2.check: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /test/files/run/gadts.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/files/run/genericValueClass.check: -------------------------------------------------------------------------------- 1 | (1,abc) 2 | (2,def) 3 | -------------------------------------------------------------------------------- /test/files/run/getClassTest-valueClass.check: -------------------------------------------------------------------------------- 1 | int 2 | class V 3 | -------------------------------------------------------------------------------- /test/files/run/imain.check: -------------------------------------------------------------------------------- 1 | Some(246) 2 | -------------------------------------------------------------------------------- /test/files/run/impconvtimes.check: -------------------------------------------------------------------------------- 1 | 3.0 * Hour = Measure(3.0,Hour) 2 | -------------------------------------------------------------------------------- /test/files/run/implicits.check: -------------------------------------------------------------------------------- 1 | OK 2 | [2] 3 | -------------------------------------------------------------------------------- /test/files/run/indexedSeq-apply.check: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/files/run/interop_typetags_are_manifests.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos:false 2 | -------------------------------------------------------------------------------- /test/files/run/java-erasure.check: -------------------------------------------------------------------------------- 1 | c 2 | -------------------------------------------------------------------------------- /test/files/run/kmpSliceSearch.check: -------------------------------------------------------------------------------- 1 | 6 6 2 | 5 10 3 | -1 -1 4 | 4 4 5 | -------------------------------------------------------------------------------- /test/files/run/lazy-concurrent.check: -------------------------------------------------------------------------------- 1 | Initializing singleton. 2 | -------------------------------------------------------------------------------- /test/files/run/literals.flags: -------------------------------------------------------------------------------- 1 | -deprecation 2 | -------------------------------------------------------------------------------- /test/files/run/macro-abort-fresh.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-auto-duplicate.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/files/run/macro-basic-ma-md-mi.check: -------------------------------------------------------------------------------- 1 | 31 -------------------------------------------------------------------------------- /test/files/run/macro-basic-ma-mdmi.check: -------------------------------------------------------------------------------- 1 | 31 -------------------------------------------------------------------------------- /test/files/run/macro-basic-mamd-mi.check: -------------------------------------------------------------------------------- 1 | 31 -------------------------------------------------------------------------------- /test/files/run/macro-bodyexpandstoimpl.check: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /test/files/run/macro-bodyexpandstoimpl.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-bundle-context-refinement.check: -------------------------------------------------------------------------------- 1 | C 2 | C 3 | -------------------------------------------------------------------------------- /test/files/run/macro-bundle-toplevel.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-def-path-dependent.check: -------------------------------------------------------------------------------- 1 | it works 2 | -------------------------------------------------------------------------------- /test/files/run/macro-default-params.check: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /test/files/run/macro-divergence-spurious.check: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /test/files/run/macro-duplicate.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-enclosures.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-expand-implicit-argument.check: -------------------------------------------------------------------------------- 1 | List(1, 2, 3) 2 | -------------------------------------------------------------------------------- /test/files/run/macro-expand-implicit-macro-has-implicit.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/files/run/macro-expand-implicit-macro-is-val.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/files/run/macro-expand-implicit-macro-is-view.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/files/run/macro-expand-multiple-arglists.check: -------------------------------------------------------------------------------- 1 | 38 -------------------------------------------------------------------------------- /test/files/run/macro-expand-overload.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-expand-override.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-expand-recursive.check: -------------------------------------------------------------------------------- 1 | it works 2 | -------------------------------------------------------------------------------- /test/files/run/macro-expand-recursive.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-expand-tparams-explicit.check: -------------------------------------------------------------------------------- 1 | WeakTypeTag[Int] 2 | -------------------------------------------------------------------------------- /test/files/run/macro-expand-unapply-a.check: -------------------------------------------------------------------------------- 1 | (1,2) 2 | (1,2,3) 3 | -------------------------------------------------------------------------------- /test/files/run/macro-expand-unapply-a.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-impl-tparam-only-in-impl.check: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /test/files/run/macro-parse-position.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos:false 2 | -------------------------------------------------------------------------------- /test/files/run/macro-quasiinvalidbody-c.check: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /test/files/run/macro-quasiquotes.check: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | -------------------------------------------------------------------------------- /test/files/run/macro-range.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros 2 | -------------------------------------------------------------------------------- /test/files/run/macro-rangepos-args.check: -------------------------------------------------------------------------------- 1 | Line: 3. Width: 5. 2 | -------------------------------------------------------------------------------- /test/files/run/macro-rangepos-args.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos -------------------------------------------------------------------------------- /test/files/run/macro-rangepos-subpatterns.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos -------------------------------------------------------------------------------- /test/files/run/macro-reflective-ma-normal-mdmi.check: -------------------------------------------------------------------------------- 1 | 43 -------------------------------------------------------------------------------- /test/files/run/macro-reflective-mamd-normal-mi.check: -------------------------------------------------------------------------------- 1 | 43 2 | -------------------------------------------------------------------------------- /test/files/run/macro-reify-basic.check: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /test/files/run/macro-reify-basic.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-reify-freevars.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-reify-ref-to-packageless.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/files/run/macro-reify-splice-outside-reify.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/files/run/macro-reify-staticXXX.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-reify-tagful-a.check: -------------------------------------------------------------------------------- 1 | List(hello world) 2 | -------------------------------------------------------------------------------- /test/files/run/macro-reify-tagful-a.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-reify-tagless-a.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-reify-type.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-reify-unreify.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-settings.check: -------------------------------------------------------------------------------- 1 | List(hello=1) 2 | -------------------------------------------------------------------------------- /test/files/run/macro-sip19-revised.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-sip19.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/macro-term-declared-in-annotation.check: -------------------------------------------------------------------------------- 1 | it works 2 | -------------------------------------------------------------------------------- /test/files/run/macro-undetparams-implicitval.check: -------------------------------------------------------------------------------- 1 | TypeTag[Nothing] 2 | -------------------------------------------------------------------------------- /test/files/run/macro-vampire-false-warning.check: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | -------------------------------------------------------------------------------- /test/files/run/macro-vampire-false-warning.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/run/macro-whitebox-extractor.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/files/run/macro-whitebox-structural.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/files/run/macroPlugins-isBlackbox/Test_3.flags: -------------------------------------------------------------------------------- 1 | -Xplugin:. -------------------------------------------------------------------------------- /test/files/run/macroPlugins-macroArgs/Test_3.flags: -------------------------------------------------------------------------------- 1 | -Xplugin:. -------------------------------------------------------------------------------- /test/files/run/macroPlugins-macroExpand.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos:false 2 | -------------------------------------------------------------------------------- /test/files/run/macroPlugins-macroExpand/Test_3.flags: -------------------------------------------------------------------------------- 1 | -Xplugin:. -------------------------------------------------------------------------------- /test/files/run/macroPlugins-macroRuntime/Test_3.flags: -------------------------------------------------------------------------------- 1 | -Xplugin:. -------------------------------------------------------------------------------- /test/files/run/macroPlugins-typedMacroBody.check: -------------------------------------------------------------------------------- 1 | impl1 2 | impl2 3 | -------------------------------------------------------------------------------- /test/files/run/macroPlugins-typedMacroBody.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos:false 2 | -------------------------------------------------------------------------------- /test/files/run/macroPlugins-typedMacroBody/Macros_2.flags: -------------------------------------------------------------------------------- 1 | -Xplugin:. -------------------------------------------------------------------------------- /test/files/run/manifests-undeprecated-in-2.10.0.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/run/matchbytes.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /test/files/run/matchemptyarray.check: -------------------------------------------------------------------------------- 1 | Array() 2 | -------------------------------------------------------------------------------- /test/files/run/matchintasany.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /test/files/run/matchonstream.check: -------------------------------------------------------------------------------- 1 | It worked! 2 | -------------------------------------------------------------------------------- /test/files/run/missingparams.check: -------------------------------------------------------------------------------- 1 | None 2 | -------------------------------------------------------------------------------- /test/files/run/no-pickle-skolems.check: -------------------------------------------------------------------------------- 1 | OK! 2 | -------------------------------------------------------------------------------- /test/files/run/nonlocalreturn.check: -------------------------------------------------------------------------------- 1 | Some(1) 2 | -------------------------------------------------------------------------------- /test/files/run/optimizer-array-load.flags: -------------------------------------------------------------------------------- 1 | -optimise -------------------------------------------------------------------------------- /test/files/run/origins.flags: -------------------------------------------------------------------------------- 1 | -no-specialization -Ydelambdafy:inline -------------------------------------------------------------------------------- /test/files/run/patmat-bind-typed.check: -------------------------------------------------------------------------------- 1 | abc 2 | -------------------------------------------------------------------------------- /test/files/run/patmat-exprs.check: -------------------------------------------------------------------------------- 1 | ((5 + 10) + 300) 2 | -------------------------------------------------------------------------------- /test/files/run/phantomValueClass.check: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /test/files/run/primitive-sigs-2-new.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:inline 2 | -------------------------------------------------------------------------------- /test/files/run/primitive-sigs-2-old.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:inline -------------------------------------------------------------------------------- /test/files/run/private-inline.flags: -------------------------------------------------------------------------------- 1 | -optimise -Yinline-warnings 2 | -------------------------------------------------------------------------------- /test/files/run/rawstrings.check: -------------------------------------------------------------------------------- 1 | [\n\t'"$\n] 2 | -------------------------------------------------------------------------------- /test/files/run/reflect-priv-ctor.check: -------------------------------------------------------------------------------- 1 | privately constructed 2 | -------------------------------------------------------------------------------- /test/files/run/reflection-attachments.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/run/reflection-fieldmirror-getsetval.check: -------------------------------------------------------------------------------- 1 | 42 2 | 2 3 | -------------------------------------------------------------------------------- /test/files/run/reflection-fieldmirror-getsetvar.check: -------------------------------------------------------------------------------- 1 | 42 2 | 2 3 | -------------------------------------------------------------------------------- /test/files/run/reflection-fieldmirror-nmelocalsuffixstring.check: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /test/files/run/reflection-modulemirror-inner-good.check: -------------------------------------------------------------------------------- 1 | R 2 | -------------------------------------------------------------------------------- /test/files/run/reflection-modulemirror-nested-good.check: -------------------------------------------------------------------------------- 1 | R 2 | -------------------------------------------------------------------------------- /test/files/run/reflection-modulemirror-toplevel-good.check: -------------------------------------------------------------------------------- 1 | R -------------------------------------------------------------------------------- /test/files/run/reflection-sync-subtypes.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/run/reflection-tags.check: -------------------------------------------------------------------------------- 1 | List() 2 | -------------------------------------------------------------------------------- /test/files/run/reflinit.check: -------------------------------------------------------------------------------- 1 | List[Int] 2 | -------------------------------------------------------------------------------- /test/files/run/reify_anonymous.check: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /test/files/run/reify_closure1.check: -------------------------------------------------------------------------------- 1 | 10 2 | 10 3 | -------------------------------------------------------------------------------- /test/files/run/reify_closure2a.check: -------------------------------------------------------------------------------- 1 | 11 2 | 12 3 | -------------------------------------------------------------------------------- /test/files/run/reify_closure3a.check: -------------------------------------------------------------------------------- 1 | 11 2 | 12 3 | -------------------------------------------------------------------------------- /test/files/run/reify_closure4a.check: -------------------------------------------------------------------------------- 1 | 11 2 | 12 3 | -------------------------------------------------------------------------------- /test/files/run/reify_closure5a.check: -------------------------------------------------------------------------------- 1 | 13 2 | 14 3 | -------------------------------------------------------------------------------- /test/files/run/reify_closure8a.check: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /test/files/run/reify_closures10.check: -------------------------------------------------------------------------------- 1 | 5 2 | 5 3 | -------------------------------------------------------------------------------- /test/files/run/reify_complex.check: -------------------------------------------------------------------------------- 1 | 3.0+4.0*i 2 | -------------------------------------------------------------------------------- /test/files/run/reify_copypaste1.check: -------------------------------------------------------------------------------- 1 | List(1, 2) 2 | 3 | -------------------------------------------------------------------------------- /test/files/run/reify_extendbuiltins.check: -------------------------------------------------------------------------------- 1 | 10! = 3628800 2 | -------------------------------------------------------------------------------- /test/files/run/reify_generic.check: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /test/files/run/reify_generic2.check: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /test/files/run/reify_getter.check: -------------------------------------------------------------------------------- 1 | evaluated = 2 2 | -------------------------------------------------------------------------------- /test/files/run/reify_implicits-new.check: -------------------------------------------------------------------------------- 1 | x = List(1, 2, 3, 4) 2 | -------------------------------------------------------------------------------- /test/files/run/reify_implicits-old.check: -------------------------------------------------------------------------------- 1 | x = List(1, 2, 3, 4) 2 | -------------------------------------------------------------------------------- /test/files/run/reify_inheritance.check: -------------------------------------------------------------------------------- 1 | 18 -------------------------------------------------------------------------------- /test/files/run/reify_inner1.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/reify_inner2.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/reify_inner3.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/reify_inner4.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/reify_metalevel_breach_+0_refers_to_1.check: -------------------------------------------------------------------------------- 1 | evaluated = 2 -------------------------------------------------------------------------------- /test/files/run/reify_metalevel_breach_-1_refers_to_0_a.check: -------------------------------------------------------------------------------- 1 | evaluated = 2 -------------------------------------------------------------------------------- /test/files/run/reify_metalevel_breach_-1_refers_to_0_b.check: -------------------------------------------------------------------------------- 1 | evaluated = 2 -------------------------------------------------------------------------------- /test/files/run/reify_metalevel_breach_-1_refers_to_1.check: -------------------------------------------------------------------------------- 1 | evaluated = 2 -------------------------------------------------------------------------------- /test/files/run/reify_nested_inner_refers_to_local.check: -------------------------------------------------------------------------------- 1 | evaluated = 2 -------------------------------------------------------------------------------- /test/files/run/reify_nested_outer_refers_to_local.check: -------------------------------------------------------------------------------- 1 | evaluated = 2 2 | -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_01.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_02.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_03.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_04.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_05.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_06.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_12.check: -------------------------------------------------------------------------------- 1 | List(2) -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_14.check: -------------------------------------------------------------------------------- 1 | List(2) -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_15.check: -------------------------------------------------------------------------------- 1 | List(2) -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_18.check: -------------------------------------------------------------------------------- 1 | List(2) 2 | -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_20.check: -------------------------------------------------------------------------------- 1 | List(2) 2 | -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_21.check: -------------------------------------------------------------------------------- 1 | List(2) 2 | -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_27.check: -------------------------------------------------------------------------------- 1 | List(2) 2 | -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_29.check: -------------------------------------------------------------------------------- 1 | List(2) 2 | -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_31.check: -------------------------------------------------------------------------------- 1 | List(2) 2 | -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_33.check: -------------------------------------------------------------------------------- 1 | List(2) 2 | -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_36.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_37.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_38.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_39.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_40.check: -------------------------------------------------------------------------------- 1 | 74088 2 | -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_41.check: -------------------------------------------------------------------------------- 1 | 42 2 | 44 3 | 43 -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_42.check: -------------------------------------------------------------------------------- 1 | 42 2 | 44 3 | 43 -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_43.check: -------------------------------------------------------------------------------- 1 | 1 2 | 2 -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_44.check: -------------------------------------------------------------------------------- 1 | 1 2 | 2 -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_47.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_48.check: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_49.check: -------------------------------------------------------------------------------- 1 | 3 2 | 3 3 | 5 -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_50.check: -------------------------------------------------------------------------------- 1 | 3 2 | 3 3 | 5 -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_51.check: -------------------------------------------------------------------------------- 1 | 2 2 | 1 3 | 2 -------------------------------------------------------------------------------- /test/files/run/reify_newimpl_52.check: -------------------------------------------------------------------------------- 1 | 2 2 | 2 3 | 1 -------------------------------------------------------------------------------- /test/files/run/reify_printf.check: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /test/files/run/reify_renamed_term_overloaded_method.check: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /test/files/run/reify_renamed_type_basic.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /test/files/run/reify_renamed_type_local_to_reifee.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /test/files/run/reify_renamed_type_spliceable.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /test/files/run/reify_sort.check: -------------------------------------------------------------------------------- 1 | [6,2,8,5,1] 2 | [1,2,5,6,8] 3 | -------------------------------------------------------------------------------- /test/files/run/reify_this.check: -------------------------------------------------------------------------------- 1 | foo 2 | false 3 | 2 4 | bar 5 | 2 -------------------------------------------------------------------------------- /test/files/run/reify_timeofday.check: -------------------------------------------------------------------------------- 1 | DateError 2 | -------------------------------------------------------------------------------- /test/files/run/repl-javap-outdir-funs.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:inline -------------------------------------------------------------------------------- /test/files/run/resetattrs-this.check: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /test/files/run/retclosure.check: -------------------------------------------------------------------------------- 1 | check failed: some problem 2 | -------------------------------------------------------------------------------- /test/files/run/retsynch.check: -------------------------------------------------------------------------------- 1 | abs(-5) = 5 2 | -------------------------------------------------------------------------------- /test/files/run/run-bug4840.flags: -------------------------------------------------------------------------------- 1 | -optimise -------------------------------------------------------------------------------- /test/files/run/runtimeEval1.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/runtimeEval2.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/files/run/sammy_java8.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/run/sammy_repeated.check: -------------------------------------------------------------------------------- 1 | WrappedArray(1) 2 | -------------------------------------------------------------------------------- /test/files/run/sammy_repeated.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental -------------------------------------------------------------------------------- /test/files/run/showraw_nosymbol.check: -------------------------------------------------------------------------------- 1 | NoSymbol 2 | -------------------------------------------------------------------------------- /test/files/run/spec-self.check: -------------------------------------------------------------------------------- 1 | 5.0 2 | 5.0 3 | -------------------------------------------------------------------------------- /test/files/run/static-module-method.check: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /test/files/run/synchronized.flags: -------------------------------------------------------------------------------- 1 | -optimize 2 | -------------------------------------------------------------------------------- /test/files/run/t0005.check: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /test/files/run/t0042.check: -------------------------------------------------------------------------------- 1 | Some(1) 2 | -------------------------------------------------------------------------------- /test/files/run/t0048.check: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /test/files/run/t0091.check: -------------------------------------------------------------------------------- 1 | 5 2 | 5 3 | -------------------------------------------------------------------------------- /test/files/run/t0528.check: -------------------------------------------------------------------------------- 1 | Array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9) 2 | -------------------------------------------------------------------------------- /test/files/run/t0607.check: -------------------------------------------------------------------------------- 1 | A() 2 | B() 3 | -------------------------------------------------------------------------------- /test/files/run/t0631.check: -------------------------------------------------------------------------------- 1 | Foo.equals called 2 | false 3 | true 4 | -------------------------------------------------------------------------------- /test/files/run/t0807.check: -------------------------------------------------------------------------------- 1 | early 2 | -------------------------------------------------------------------------------- /test/files/run/t0883.check: -------------------------------------------------------------------------------- 1 | OK 2 | OK 3 | -------------------------------------------------------------------------------- /test/files/run/t102.check: -------------------------------------------------------------------------------- 1 | (5,5) 2 | (10,10) 3 | -------------------------------------------------------------------------------- /test/files/run/t1042.check: -------------------------------------------------------------------------------- 1 | B 2 | -------------------------------------------------------------------------------- /test/files/run/t1048.check: -------------------------------------------------------------------------------- 1 | 3 2 | 2 3 | -------------------------------------------------------------------------------- /test/files/run/t107.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /test/files/run/t1141.check: -------------------------------------------------------------------------------- 1 | var 2 | args 3 | -------------------------------------------------------------------------------- /test/files/run/t1167.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:inline -------------------------------------------------------------------------------- /test/files/run/t1360.check: -------------------------------------------------------------------------------- 1 | [one, two] 2 | [1, 2, 3] 3 | -------------------------------------------------------------------------------- /test/files/run/t1423.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /test/files/run/t1430.check: -------------------------------------------------------------------------------- 1 | Baz 2 | -------------------------------------------------------------------------------- /test/files/run/t1503.check: -------------------------------------------------------------------------------- 1 | whoops 2 | -------------------------------------------------------------------------------- /test/files/run/t1503_future.flags: -------------------------------------------------------------------------------- 1 | -Xfuture -------------------------------------------------------------------------------- /test/files/run/t1524.check: -------------------------------------------------------------------------------- 1 | initial 2 | -------------------------------------------------------------------------------- /test/files/run/t1535.check: -------------------------------------------------------------------------------- 1 | 42 2 | true 3 | -------------------------------------------------------------------------------- /test/files/run/t1537.check: -------------------------------------------------------------------------------- 1 | true 2 | true -------------------------------------------------------------------------------- /test/files/run/t1591.check: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /test/files/run/t1718.check: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /test/files/run/t1987.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/run/t1987b.check: -------------------------------------------------------------------------------- 1 | ok! 2 | -------------------------------------------------------------------------------- /test/files/run/t2027.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /test/files/run/t2029.check: -------------------------------------------------------------------------------- 1 | 1,2,3,4,5 2 | 4,3,2 3 | true 4 | -------------------------------------------------------------------------------- /test/files/run/t2106.flags: -------------------------------------------------------------------------------- 1 | -optimise -Yinline-warnings 2 | -------------------------------------------------------------------------------- /test/files/run/t2147.check: -------------------------------------------------------------------------------- 1 | 11 2 | 11 3 | -------------------------------------------------------------------------------- /test/files/run/t216.check: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/files/run/t2176.check: -------------------------------------------------------------------------------- 1 | Stream(1) 2 | -------------------------------------------------------------------------------- /test/files/run/t2177.check: -------------------------------------------------------------------------------- 1 | 12345 2 | -------------------------------------------------------------------------------- /test/files/run/t2251.flags: -------------------------------------------------------------------------------- 1 | -Xstrict-inference -------------------------------------------------------------------------------- /test/files/run/t2251b.flags: -------------------------------------------------------------------------------- 1 | -Xstrict-inference -------------------------------------------------------------------------------- /test/files/run/t2296c.check: -------------------------------------------------------------------------------- 1 | RUNNING ACTION 2 | -------------------------------------------------------------------------------- /test/files/run/t2308a.check: -------------------------------------------------------------------------------- 1 | interface Test$T 2 | -------------------------------------------------------------------------------- /test/files/run/t2318.check: -------------------------------------------------------------------------------- 1 | bar 2 | bar 3 | -------------------------------------------------------------------------------- /test/files/run/t2418.check: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /test/files/run/t2446.check: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /test/files/run/t2488.check: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 1 4 | 2 5 | -------------------------------------------------------------------------------- /test/files/run/t2577.check: -------------------------------------------------------------------------------- 1 | Nothing 2 | -------------------------------------------------------------------------------- /test/files/run/t261.check: -------------------------------------------------------------------------------- 1 | A 2 | B 3 | -------------------------------------------------------------------------------- /test/files/run/t2788.check: -------------------------------------------------------------------------------- 1 | List(1, 2) -------------------------------------------------------------------------------- /test/files/run/t2857.check: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /test/files/run/t2873.check: -------------------------------------------------------------------------------- 1 | RedBlack.Empty$ 2 | -------------------------------------------------------------------------------- /test/files/run/t3026.check: -------------------------------------------------------------------------------- 1 | RED 2 | YELLOW 3 | -------------------------------------------------------------------------------- /test/files/run/t3038b.check: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 -------------------------------------------------------------------------------- /test/files/run/t3038b.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit -------------------------------------------------------------------------------- /test/files/run/t3038d.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit -------------------------------------------------------------------------------- /test/files/run/t3097.check: -------------------------------------------------------------------------------- 1 | atomic 2 | -------------------------------------------------------------------------------- /test/files/run/t3158.check: -------------------------------------------------------------------------------- 1 | Array() 2 | -------------------------------------------------------------------------------- /test/files/run/t3186.check: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /test/files/run/t3199b.check: -------------------------------------------------------------------------------- 1 | [1, 2, 3] 2 | -------------------------------------------------------------------------------- /test/files/run/t3235-minimal.flags: -------------------------------------------------------------------------------- 1 | -deprecation 2 | -------------------------------------------------------------------------------- /test/files/run/t3241.check: -------------------------------------------------------------------------------- 1 | done -------------------------------------------------------------------------------- /test/files/run/t3269.check: -------------------------------------------------------------------------------- 1 | 1 2 | Hello 3 | -------------------------------------------------------------------------------- /test/files/run/t3327.check: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /test/files/run/t3346a.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /test/files/run/t3346f.check: -------------------------------------------------------------------------------- 1 | 5 2 | 5 3 | -------------------------------------------------------------------------------- /test/files/run/t3346g.check: -------------------------------------------------------------------------------- 1 | A(3,asdf) 2 | -------------------------------------------------------------------------------- /test/files/run/t3346h.check: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /test/files/run/t3346j.check: -------------------------------------------------------------------------------- 1 | Int 2 | -------------------------------------------------------------------------------- /test/files/run/t3353.check: -------------------------------------------------------------------------------- 1 | Got: foo and None 2 | -------------------------------------------------------------------------------- /test/files/run/t3395.check: -------------------------------------------------------------------------------- 1 | abc 2 | def 3 | -------------------------------------------------------------------------------- /test/files/run/t3452.check: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /test/files/run/t3452b-bcode.flags: -------------------------------------------------------------------------------- 1 | -Ybackend:GenBCode 2 | -------------------------------------------------------------------------------- /test/files/run/t3507-new.check: -------------------------------------------------------------------------------- 1 | _1.b.c.type 2 | -------------------------------------------------------------------------------- /test/files/run/t3509.flags: -------------------------------------------------------------------------------- 1 | -Yinline -------------------------------------------------------------------------------- /test/files/run/t3569.flags: -------------------------------------------------------------------------------- 1 | -Yinline -------------------------------------------------------------------------------- /test/files/run/t3616.check: -------------------------------------------------------------------------------- 1 | Fruit.ValueSet(A, B, C) 2 | -------------------------------------------------------------------------------- /test/files/run/t3667.check: -------------------------------------------------------------------------------- 1 | 4 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /test/files/run/t3670.check: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | 1 4 | 2 5 | 42 6 | -------------------------------------------------------------------------------- /test/files/run/t3702.check: -------------------------------------------------------------------------------- 1 | () 2 | 6 3 | -------------------------------------------------------------------------------- /test/files/run/t3726.check: -------------------------------------------------------------------------------- 1 | hi there 2 | 5 -------------------------------------------------------------------------------- /test/files/run/t3798.check: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /test/files/run/t3835.check: -------------------------------------------------------------------------------- 1 | 6 2 | 1 3 | -------------------------------------------------------------------------------- /test/files/run/t3895.check: -------------------------------------------------------------------------------- 1 | 17 2 | 17 -------------------------------------------------------------------------------- /test/files/run/t3895.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit -------------------------------------------------------------------------------- /test/files/run/t3897.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:inline -------------------------------------------------------------------------------- /test/files/run/t3950.check: -------------------------------------------------------------------------------- 1 | minus 2 | zero 3 | plus -------------------------------------------------------------------------------- /test/files/run/t3964.check: -------------------------------------------------------------------------------- 1 | 42 2 | -21 3 | -------------------------------------------------------------------------------- /test/files/run/t3980.check: -------------------------------------------------------------------------------- 1 | once 2 | 2 3 | 2 4 | -------------------------------------------------------------------------------- /test/files/run/t4062.check: -------------------------------------------------------------------------------- 1 | false 2 | true 3 | -------------------------------------------------------------------------------- /test/files/run/t4072.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit -------------------------------------------------------------------------------- /test/files/run/t4148.check: -------------------------------------------------------------------------------- 1 | cce1 2 | 5 3 | 100 4 | -------------------------------------------------------------------------------- /test/files/run/t4171.check: -------------------------------------------------------------------------------- 1 | 1 2 | 5 3 | class Test$B$1 4 | -------------------------------------------------------------------------------- /test/files/run/t4190.check: -------------------------------------------------------------------------------- 1 | a0 2 | b0 3 | c0 4 | -------------------------------------------------------------------------------- /test/files/run/t4285.flags: -------------------------------------------------------------------------------- 1 | -optimise -------------------------------------------------------------------------------- /test/files/run/t429.check: -------------------------------------------------------------------------------- 1 | AyB5 2 | -------------------------------------------------------------------------------- /test/files/run/t4317.check: -------------------------------------------------------------------------------- 1 | 0 2 | 99 3 | 33 4 | -------------------------------------------------------------------------------- /test/files/run/t4317.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/run/t4351.check: -------------------------------------------------------------------------------- 1 | runtime exception 2 | -------------------------------------------------------------------------------- /test/files/run/t4482.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/files/run/t4536.flags: -------------------------------------------------------------------------------- 1 | -language:dynamics 2 | -------------------------------------------------------------------------------- /test/files/run/t4537.check: -------------------------------------------------------------------------------- 1 | b.Settings 2 | -------------------------------------------------------------------------------- /test/files/run/t4560b.check: -------------------------------------------------------------------------------- 1 | 23 2 | SUCCESS 3 | -------------------------------------------------------------------------------- /test/files/run/t4565_1.check: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /test/files/run/t4570.check: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /test/files/run/t4601.check: -------------------------------------------------------------------------------- 1 | 'blubber 2 | -------------------------------------------------------------------------------- /test/files/run/t4617.check: -------------------------------------------------------------------------------- 1 | Str 8.0 2 | -------------------------------------------------------------------------------- /test/files/run/t4656.check: -------------------------------------------------------------------------------- 1 | List(1, 2, 3) 2 | -------------------------------------------------------------------------------- /test/files/run/t4697.check: -------------------------------------------------------------------------------- 1 | 50005000 2 | -------------------------------------------------------------------------------- /test/files/run/t4742.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit -------------------------------------------------------------------------------- /test/files/run/t4750.check: -------------------------------------------------------------------------------- 1 | US$ 5.80 2 | -------------------------------------------------------------------------------- /test/files/run/t4753.check: -------------------------------------------------------------------------------- 1 | boolean 2 | -------------------------------------------------------------------------------- /test/files/run/t4766.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /test/files/run/t4770.check: -------------------------------------------------------------------------------- 1 | (a,2) 2 | (2,a) 3 | -------------------------------------------------------------------------------- /test/files/run/t4777.check: -------------------------------------------------------------------------------- 1 | 28 2 | 28 3 | -------------------------------------------------------------------------------- /test/files/run/t4788/C.scala: -------------------------------------------------------------------------------- 1 | @CAnnotation 2 | class C 3 | -------------------------------------------------------------------------------- /test/files/run/t4788/R.scala: -------------------------------------------------------------------------------- 1 | @RAnnotation 2 | class R 3 | -------------------------------------------------------------------------------- /test/files/run/t4788/S.scala: -------------------------------------------------------------------------------- 1 | @SAnnotation 2 | class S 3 | -------------------------------------------------------------------------------- /test/files/run/t4794.check: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /test/files/run/t4897.check: -------------------------------------------------------------------------------- 1 | joepie 2 | -------------------------------------------------------------------------------- /test/files/run/t4935.check: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /test/files/run/t4935.flags: -------------------------------------------------------------------------------- 1 | -optimize 2 | -------------------------------------------------------------------------------- /test/files/run/t5037.check: -------------------------------------------------------------------------------- 1 | true 2 | false 3 | -------------------------------------------------------------------------------- /test/files/run/t5040.check: -------------------------------------------------------------------------------- 1 | applyDynamic 2 | -------------------------------------------------------------------------------- /test/files/run/t5040.flags: -------------------------------------------------------------------------------- 1 | -language:dynamics 2 | -------------------------------------------------------------------------------- /test/files/run/t5080.check: -------------------------------------------------------------------------------- 1 | hey 2 | -------------------------------------------------------------------------------- /test/files/run/t5158.check: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /test/files/run/t5171.check: -------------------------------------------------------------------------------- 1 | IsList 2 | -------------------------------------------------------------------------------- /test/files/run/t5201.check: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /test/files/run/t5229_2.check: -------------------------------------------------------------------------------- 1 | 2 2 | evaluated = () 3 | -------------------------------------------------------------------------------- /test/files/run/t5230.check: -------------------------------------------------------------------------------- 1 | 2 2 | evaluated = () 3 | -------------------------------------------------------------------------------- /test/files/run/t5258a.check: -------------------------------------------------------------------------------- 1 | int -------------------------------------------------------------------------------- /test/files/run/t5266_1.check: -------------------------------------------------------------------------------- 1 | 2 2 | evaluated = () -------------------------------------------------------------------------------- /test/files/run/t5266_2.check: -------------------------------------------------------------------------------- 1 | 2 2 | evaluated = () -------------------------------------------------------------------------------- /test/files/run/t5269.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/files/run/t5270.check: -------------------------------------------------------------------------------- 1 | 200 2 | -------------------------------------------------------------------------------- /test/files/run/t5272_1_newpatmat.check: -------------------------------------------------------------------------------- 1 | okay -------------------------------------------------------------------------------- /test/files/run/t5272_1_oldpatmat.check: -------------------------------------------------------------------------------- 1 | okay -------------------------------------------------------------------------------- /test/files/run/t5272_2_newpatmat.check: -------------------------------------------------------------------------------- 1 | okay2 -------------------------------------------------------------------------------- /test/files/run/t5272_2_oldpatmat.check: -------------------------------------------------------------------------------- 1 | okay2 -------------------------------------------------------------------------------- /test/files/run/t5273_1_newpatmat.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/files/run/t5273_1_oldpatmat.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/files/run/t5273_2a_newpatmat.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/t5273_2a_oldpatmat.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/t5274_2.check: -------------------------------------------------------------------------------- 1 | [6,2,8,5,1] 2 | [1,2,5,6,8] 3 | -------------------------------------------------------------------------------- /test/files/run/t5275.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/files/run/t5276_1a.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/t5276_1b.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/t5276_2a.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/t5276_2b.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/t5277_1.check: -------------------------------------------------------------------------------- 1 | 10! = 3628800 2 | -------------------------------------------------------------------------------- /test/files/run/t5277_2.check: -------------------------------------------------------------------------------- 1 | 2() 2 | 1() 3 | -------------------------------------------------------------------------------- /test/files/run/t5279.check: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /test/files/run/t5284.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/files/run/t5328.check: -------------------------------------------------------------------------------- 1 | 2 2 | 1,2,8 3 | 1,8,3 4 | -------------------------------------------------------------------------------- /test/files/run/t5334_1.check: -------------------------------------------------------------------------------- 1 | C -------------------------------------------------------------------------------- /test/files/run/t5334_2.check: -------------------------------------------------------------------------------- 1 | List((C,C)) -------------------------------------------------------------------------------- /test/files/run/t5335.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/files/run/t5375.check: -------------------------------------------------------------------------------- 1 | Runtime exception 2 | -------------------------------------------------------------------------------- /test/files/run/t5407.check: -------------------------------------------------------------------------------- 1 | 2 2 | 2 3 | -------------------------------------------------------------------------------- /test/files/run/t5419.check: -------------------------------------------------------------------------------- 1 | 5: @Foo.asInstanceOf[Int] 2 | -------------------------------------------------------------------------------- /test/files/run/t5423.check: -------------------------------------------------------------------------------- 1 | List(table) -------------------------------------------------------------------------------- /test/files/run/t5544.check: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /test/files/run/t5552.check: -------------------------------------------------------------------------------- 1 | (3,3) 2 | (3.0,3.0) 3 | -------------------------------------------------------------------------------- /test/files/run/t5568.flags: -------------------------------------------------------------------------------- 1 | -nowarn 2 | -------------------------------------------------------------------------------- /test/files/run/t5608.check: -------------------------------------------------------------------------------- 1 | A@6 2 | -------------------------------------------------------------------------------- /test/files/run/t5610a.check: -------------------------------------------------------------------------------- 1 | Stroke a kitten 2 | -------------------------------------------------------------------------------- /test/files/run/t5614.check: -------------------------------------------------------------------------------- 1 | 3 2 | a 3 | b 4 | -------------------------------------------------------------------------------- /test/files/run/t5648.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/run/t5676.check: -------------------------------------------------------------------------------- 1 | ok 2 | false 3 | true 4 | -------------------------------------------------------------------------------- /test/files/run/t5676.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental -------------------------------------------------------------------------------- /test/files/run/t5688.check: -------------------------------------------------------------------------------- 1 | Vector(ta, tb, tab) 2 | -------------------------------------------------------------------------------- /test/files/run/t5704.check: -------------------------------------------------------------------------------- 1 | String 2 | -------------------------------------------------------------------------------- /test/files/run/t5704.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/t5710-1.check: -------------------------------------------------------------------------------- 1 | evaluated = (abc,abc) 2 | -------------------------------------------------------------------------------- /test/files/run/t5710-2.check: -------------------------------------------------------------------------------- 1 | evaluated = (abc,abc) 2 | -------------------------------------------------------------------------------- /test/files/run/t5713.check: -------------------------------------------------------------------------------- 1 | err 2 | -------------------------------------------------------------------------------- /test/files/run/t5713.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/t5733.check: -------------------------------------------------------------------------------- 1 | Running ABTest asserts 2 | Done 3 | -------------------------------------------------------------------------------- /test/files/run/t5753_1.check: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /test/files/run/t5753_1.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/t5753_2.check: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /test/files/run/t5753_2.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/t5804.check: -------------------------------------------------------------------------------- 1 | 128 2 | 16 3 | 128 4 | 32 -------------------------------------------------------------------------------- /test/files/run/t5816.check: -------------------------------------------------------------------------------- 1 | 5.+(Test.this.y) 2 | -------------------------------------------------------------------------------- /test/files/run/t5824.check: -------------------------------------------------------------------------------- 1 | a b c 2 | -------------------------------------------------------------------------------- /test/files/run/t5830.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/run/t5866.check: -------------------------------------------------------------------------------- 1 | 0.0 2 | Foo(0.0) 3 | -------------------------------------------------------------------------------- /test/files/run/t5903a.flags: -------------------------------------------------------------------------------- 1 | -Xlog-reflective-calls -------------------------------------------------------------------------------- /test/files/run/t5903b.check: -------------------------------------------------------------------------------- 1 | oops 2 | -------------------------------------------------------------------------------- /test/files/run/t5903b.flags: -------------------------------------------------------------------------------- 1 | -Xlog-reflective-calls -------------------------------------------------------------------------------- /test/files/run/t5903c.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/files/run/t5903c.flags: -------------------------------------------------------------------------------- 1 | -Xlog-reflective-calls -------------------------------------------------------------------------------- /test/files/run/t5903d.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/files/run/t5903d.flags: -------------------------------------------------------------------------------- 1 | -Xlog-reflective-calls -------------------------------------------------------------------------------- /test/files/run/t5905-features.flags: -------------------------------------------------------------------------------- 1 | -nowarn 2 | -------------------------------------------------------------------------------- /test/files/run/t5914.check: -------------------------------------------------------------------------------- 1 | correct 2 | -------------------------------------------------------------------------------- /test/files/run/t594.check: -------------------------------------------------------------------------------- 1 | one 2 | two 3 | -------------------------------------------------------------------------------- /test/files/run/t5943a2.check: -------------------------------------------------------------------------------- 1 | Vector(2, 3, 4) 2 | -------------------------------------------------------------------------------- /test/files/run/t5974.check: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /test/files/run/t601.check: -------------------------------------------------------------------------------- 1 | FooA 2 | -------------------------------------------------------------------------------- /test/files/run/t6011b.check: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /test/files/run/t6063.check: -------------------------------------------------------------------------------- 1 | public static int foo.Ob.f5() 2 | -------------------------------------------------------------------------------- /test/files/run/t6070.check: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /test/files/run/t6077_patmat_cse_irrefutable.check: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /test/files/run/t6086-vanilla.check: -------------------------------------------------------------------------------- 1 | X 2 | -------------------------------------------------------------------------------- /test/files/run/t6102.flags: -------------------------------------------------------------------------------- 1 | -Ydead-code -Ydebug -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/run/t6104.check: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /test/files/run/t6113.check: -------------------------------------------------------------------------------- 1 | Foo[[X](Int, X)] 2 | -------------------------------------------------------------------------------- /test/files/run/t6154.check: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /test/files/run/t6178.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/t6181.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/files/run/t6188.flags: -------------------------------------------------------------------------------- 1 | -optimize 2 | -------------------------------------------------------------------------------- /test/files/run/t6194.check: -------------------------------------------------------------------------------- 1 | C:\FooBar\Java\includes\*.jar 2 | -------------------------------------------------------------------------------- /test/files/run/t6199-mirror.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /test/files/run/t6199-toolbox.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /test/files/run/t6221.check: -------------------------------------------------------------------------------- 1 | ((x) => x.$percent(2).$eq$eq(0)) 2 | -------------------------------------------------------------------------------- /test/files/run/t6240a.check: -------------------------------------------------------------------------------- 1 | StepTwo.type 2 | -------------------------------------------------------------------------------- /test/files/run/t6240b.check: -------------------------------------------------------------------------------- 1 | StepThree.type 2 | -------------------------------------------------------------------------------- /test/files/run/t6260-delambdafy.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:method 2 | -------------------------------------------------------------------------------- /test/files/run/t6260.check: -------------------------------------------------------------------------------- 1 | Box(abcabc) 2 | -------------------------------------------------------------------------------- /test/files/run/t627.check: -------------------------------------------------------------------------------- 1 | WrappedArray(1, 2, 3, 4) 2 | -------------------------------------------------------------------------------- /test/files/run/t6277.check: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /test/files/run/t629.check: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/files/run/t6309.check: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /test/files/run/t6327.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos:false 2 | -------------------------------------------------------------------------------- /test/files/run/t6392a.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /test/files/run/t6394a.check: -------------------------------------------------------------------------------- 1 | TEST 2 | -------------------------------------------------------------------------------- /test/files/run/t6394a.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/t6394b.check: -------------------------------------------------------------------------------- 1 | TEST 2 | -------------------------------------------------------------------------------- /test/files/run/t6394b.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/files/run/t6411b.check: -------------------------------------------------------------------------------- 1 | Bar(Foo(3)) 2 | -------------------------------------------------------------------------------- /test/files/run/t6443-varargs.check: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /test/files/run/t6541.flags: -------------------------------------------------------------------------------- 1 | -feature -Xfatal-warnings -Xsource:2.12 -------------------------------------------------------------------------------- /test/files/run/t6546.flags: -------------------------------------------------------------------------------- 1 | -optimise -------------------------------------------------------------------------------- /test/files/run/t657.check: -------------------------------------------------------------------------------- 1 | passed 2 | -------------------------------------------------------------------------------- /test/files/run/t6574b.check: -------------------------------------------------------------------------------- 1 | List(5, 4, 3, 2, 1) 2 | -------------------------------------------------------------------------------- /test/files/run/t6608.check: -------------------------------------------------------------------------------- 1 | (C$$yyy,true) 2 | -------------------------------------------------------------------------------- /test/files/run/t6637.check: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /test/files/run/t6662.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /test/files/run/t6663.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/files/run/t6663.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos:false 2 | -------------------------------------------------------------------------------- /test/files/run/t6673.check: -------------------------------------------------------------------------------- 1 | List(x) 2 | -------------------------------------------------------------------------------- /test/files/run/t6719.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /test/files/run/t6725-1.check: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | -------------------------------------------------------------------------------- /test/files/run/t6731.flags: -------------------------------------------------------------------------------- 1 | -Yrangepos:false 2 | -------------------------------------------------------------------------------- /test/files/run/t6888.check: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | 3 4 | -------------------------------------------------------------------------------- /test/files/run/t6928-run.check: -------------------------------------------------------------------------------- 1 | 3 As 2 | -------------------------------------------------------------------------------- /test/files/run/t6968.check: -------------------------------------------------------------------------------- 1 | 1, 3, 5 2 | -------------------------------------------------------------------------------- /test/files/run/t6969.check: -------------------------------------------------------------------------------- 1 | All threads completed. 2 | -------------------------------------------------------------------------------- /test/files/run/t7008-scala-defined.flags: -------------------------------------------------------------------------------- 1 | -Ybackend:GenASM 2 | -------------------------------------------------------------------------------- /test/files/run/t7039.check: -------------------------------------------------------------------------------- 1 | Matched! 2 | -------------------------------------------------------------------------------- /test/files/run/t7088.check: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | -------------------------------------------------------------------------------- /test/files/run/t7120.check: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /test/files/run/t7157.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /test/files/run/t7171.flags: -------------------------------------------------------------------------------- 1 | -unchecked 2 | -------------------------------------------------------------------------------- /test/files/run/t7223.check: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /test/files/run/t7246.check: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /test/files/run/t7246b.check: -------------------------------------------------------------------------------- 1 | base 2 | sub 3 | -------------------------------------------------------------------------------- /test/files/run/t7249.check: -------------------------------------------------------------------------------- 1 | Yup! 2 | -------------------------------------------------------------------------------- /test/files/run/t7291.check: -------------------------------------------------------------------------------- 1 | conjure 2 | traversable 3 | -------------------------------------------------------------------------------- /test/files/run/t7300.check: -------------------------------------------------------------------------------- 1 | 2 2 | 2 3 | -------------------------------------------------------------------------------- /test/files/run/t7331a.check: -------------------------------------------------------------------------------- 1 | source-,line-1,offset=0 2 | 2 -------------------------------------------------------------------------------- /test/files/run/t7341.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit -------------------------------------------------------------------------------- /test/files/run/t7359.check: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /test/files/run/t7406.check: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /test/files/run/t7407.check: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /test/files/run/t7407b.check: -------------------------------------------------------------------------------- 1 | Hello 2 | abc 3 | -------------------------------------------------------------------------------- /test/files/run/t7407b.flags: -------------------------------------------------------------------------------- 1 | -Ynooptimise -Ybackend:GenBCode 2 | -------------------------------------------------------------------------------- /test/files/run/t7439/A_1.java: -------------------------------------------------------------------------------- 1 | public class A_1 { 2 | 3 | } -------------------------------------------------------------------------------- /test/files/run/t744.check: -------------------------------------------------------------------------------- 1 | BEGIN 2 | Hello from linked 3 | END 4 | -------------------------------------------------------------------------------- /test/files/run/t7459b-optimize.flags: -------------------------------------------------------------------------------- 1 | -optimize 2 | -------------------------------------------------------------------------------- /test/files/run/t7475b.check: -------------------------------------------------------------------------------- 1 | 2 2 | 2 3 | -------------------------------------------------------------------------------- /test/files/run/t7570a.check: -------------------------------------------------------------------------------- 1 | C 2 | -------------------------------------------------------------------------------- /test/files/run/t7582.flags: -------------------------------------------------------------------------------- 1 | -optimize -------------------------------------------------------------------------------- /test/files/run/t7582b.flags: -------------------------------------------------------------------------------- 1 | -optimize -------------------------------------------------------------------------------- /test/files/run/t7584.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/run/t7617a.check: -------------------------------------------------------------------------------- 1 | hello 2 | world 3 | -------------------------------------------------------------------------------- /test/files/run/t7617b.check: -------------------------------------------------------------------------------- 1 | foo = 2 2 | -------------------------------------------------------------------------------- /test/files/run/t7715.check: -------------------------------------------------------------------------------- 1 | 6 2 | 4 3 | 4 4 | -------------------------------------------------------------------------------- /test/files/run/t7791-script-linenums.check: -------------------------------------------------------------------------------- 1 | hello, scripted test 2 | -------------------------------------------------------------------------------- /test/files/run/t7805-repl-i.script: -------------------------------------------------------------------------------- 1 | import util._ 2 | -------------------------------------------------------------------------------- /test/files/run/t7817-tree-gen.flags: -------------------------------------------------------------------------------- 1 | -Ynooptimise -------------------------------------------------------------------------------- /test/files/run/t7852.flags: -------------------------------------------------------------------------------- 1 | -Ynooptimise 2 | -------------------------------------------------------------------------------- /test/files/run/t7974.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit:false 2 | -------------------------------------------------------------------------------- /test/files/run/t8017.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:method 2 | -------------------------------------------------------------------------------- /test/files/run/t8048a.check: -------------------------------------------------------------------------------- 1 | Some(2) 2 | -------------------------------------------------------------------------------- /test/files/run/t8048b.check: -------------------------------------------------------------------------------- 1 | 2 2 | 2 3 | 2 4 | -------------------------------------------------------------------------------- /test/files/run/t8100.check: -------------------------------------------------------------------------------- 1 | Success(0) 2 | -------------------------------------------------------------------------------- /test/files/run/t8153.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/files/run/t8233-bcode.flags: -------------------------------------------------------------------------------- 1 | -Ybackend:GenBCode 2 | -------------------------------------------------------------------------------- /test/files/run/t8266-octal-interp.flags: -------------------------------------------------------------------------------- 1 | -deprecation 2 | -------------------------------------------------------------------------------- /test/files/run/t8321.check: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/files/run/t8437.check: -------------------------------------------------------------------------------- 1 | 5 2 | 5 3 | -------------------------------------------------------------------------------- /test/files/run/t8570.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit 2 | -------------------------------------------------------------------------------- /test/files/run/t8570a.check: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /test/files/run/t8570a.flags: -------------------------------------------------------------------------------- 1 | -Xcheckinit 2 | -------------------------------------------------------------------------------- /test/files/run/t8601.flags: -------------------------------------------------------------------------------- 1 | -optimize -------------------------------------------------------------------------------- /test/files/run/t8601b.flags: -------------------------------------------------------------------------------- 1 | -optimize -------------------------------------------------------------------------------- /test/files/run/t8601c.flags: -------------------------------------------------------------------------------- 1 | -optimize -------------------------------------------------------------------------------- /test/files/run/t8601d.flags: -------------------------------------------------------------------------------- 1 | -optimize -------------------------------------------------------------------------------- /test/files/run/t8601e.flags: -------------------------------------------------------------------------------- 1 | -optimize 2 | -------------------------------------------------------------------------------- /test/files/run/t8610.flags: -------------------------------------------------------------------------------- 1 | -Xlint:adapted-args 2 | -------------------------------------------------------------------------------- /test/files/run/t8611a.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/run/t8611b.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/run/t8611c.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/files/run/t8637.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/run/t8690.check: -------------------------------------------------------------------------------- 1 | non-empty iterator 2 | abcdef 3 | -------------------------------------------------------------------------------- /test/files/run/t8764.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/run/t8845.flags: -------------------------------------------------------------------------------- 1 | -Ybackend:GenBCode -Ynooptimize 2 | -------------------------------------------------------------------------------- /test/files/run/t8888.flags: -------------------------------------------------------------------------------- 1 | -Ydelambdafy:method 2 | -------------------------------------------------------------------------------- /test/files/run/t8925.check: -------------------------------------------------------------------------------- 1 | bar 2 | abcd 3 | -------------------------------------------------------------------------------- /test/files/run/t8931.check: -------------------------------------------------------------------------------- 1 | List(interface B) 2 | -------------------------------------------------------------------------------- /test/files/run/t8933.check: -------------------------------------------------------------------------------- 1 | 'traitSymbol 2 | -------------------------------------------------------------------------------- /test/files/run/t9003.flags: -------------------------------------------------------------------------------- 1 | -optimize 2 | -------------------------------------------------------------------------------- /test/files/run/t920.check: -------------------------------------------------------------------------------- 1 | baz 2 | -------------------------------------------------------------------------------- /test/files/run/tcpoly_monads.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/files/run/tcpoly_overriding.check: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /test/files/run/toolbox_current_run_compiles.check: -------------------------------------------------------------------------------- 1 | true 2 | false 3 | -------------------------------------------------------------------------------- /test/files/run/toolbox_default_reporter_is_silent.check: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /test/files/run/toolbox_typecheck_inferimplicitvalue.check: -------------------------------------------------------------------------------- 1 | C.MC 2 | -------------------------------------------------------------------------------- /test/files/run/typealias_overriding.check: -------------------------------------------------------------------------------- 1 | LinkedNode 2 | -------------------------------------------------------------------------------- /test/files/run/typecheck.check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/run/typed-annotated.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/files/run/valueclasses-classmanifest-basic.check: -------------------------------------------------------------------------------- 1 | Foo 2 | -------------------------------------------------------------------------------- /test/files/run/valueclasses-classtag-basic.check: -------------------------------------------------------------------------------- 1 | Foo 2 | -------------------------------------------------------------------------------- /test/files/run/valueclasses-classtag-existential.check: -------------------------------------------------------------------------------- 1 | Object 2 | -------------------------------------------------------------------------------- /test/files/run/valueclasses-classtag-generic.check: -------------------------------------------------------------------------------- 1 | Foo 2 | -------------------------------------------------------------------------------- /test/files/run/valueclasses-manifest-basic.check: -------------------------------------------------------------------------------- 1 | Foo 2 | -------------------------------------------------------------------------------- /test/files/run/valueclasses-typetag-basic.check: -------------------------------------------------------------------------------- 1 | Foo 2 | -------------------------------------------------------------------------------- /test/files/run/valueclasses-typetag-existential.check: -------------------------------------------------------------------------------- 1 | Foo[_] 2 | -------------------------------------------------------------------------------- /test/files/run/valueclasses-typetag-generic.check: -------------------------------------------------------------------------------- 1 | Foo[String] 2 | -------------------------------------------------------------------------------- /test/files/run/verify-ctor.check: -------------------------------------------------------------------------------- 1 | abc 2 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_apply.check: -------------------------------------------------------------------------------- 1 | OK 2 2 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_apply.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_casting.check: -------------------------------------------------------------------------------- 1 | List(1) 2 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_casting.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_extends_product.flags: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_literal.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_npe.check: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /test/files/run/virtpatmat_npe.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_partial.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_stringinterp.check: -------------------------------------------------------------------------------- 1 | Node(1) 2 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_stringinterp.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental -------------------------------------------------------------------------------- /test/files/run/virtpatmat_switch.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_tailcalls_verifyerror.check: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_try.check: -------------------------------------------------------------------------------- 1 | meh 2 | B 3 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_try.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_typed.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_typetag.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/files/run/virtpatmat_unapply.check: -------------------------------------------------------------------------------- 1 | 1 2 | 6 3 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_unapply.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_unapplyprod.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_unapplyseq.check: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /test/files/run/virtpatmat_unapplyseq.flags: -------------------------------------------------------------------------------- 1 | -Xexperimental 2 | -------------------------------------------------------------------------------- /test/files/run/virtpatmat_valdef.check: -------------------------------------------------------------------------------- 1 | meh(true,null) 2 | -------------------------------------------------------------------------------- /test/files/scalap/cbnParam.scala: -------------------------------------------------------------------------------- 1 | class CbnParam(s: => String) 2 | -------------------------------------------------------------------------------- /test/files/specialized/spec-absfun.check: -------------------------------------------------------------------------------- 1 | 4006000 -------------------------------------------------------------------------------- /test/files/specialized/spec-ame.check: -------------------------------------------------------------------------------- 1 | abc 2 | 10 3 | 2 4 | -------------------------------------------------------------------------------- /test/files/specialized/spec-constr.check: -------------------------------------------------------------------------------- 1 | hello? 2 | goodbye 3 | 0 -------------------------------------------------------------------------------- /test/files/specialized/spec-overrides.check: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /test/files/specialized/t6035.check: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /test/pending/jvm/actor-receive-sender.check: -------------------------------------------------------------------------------- 1 | OK 2 | OK 3 | -------------------------------------------------------------------------------- /test/pending/jvm/actorgc_leak.check: -------------------------------------------------------------------------------- 1 | Done 2 | -------------------------------------------------------------------------------- /test/pending/jvm/reactWithinZero.check: -------------------------------------------------------------------------------- 1 | TIMEOUT 2 | 'ack 3 | -------------------------------------------------------------------------------- /test/pending/jvm/receiveWithinZero.check: -------------------------------------------------------------------------------- 1 | TIMEOUT 2 | 'ack 3 | -------------------------------------------------------------------------------- /test/pending/jvm/terminateLinked.check: -------------------------------------------------------------------------------- 1 | Done 2 | -------------------------------------------------------------------------------- /test/pending/jvm/timeout.check: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/pending/neg/dot-classpath.flags: -------------------------------------------------------------------------------- 1 | -Ylog-classpath -------------------------------------------------------------------------------- /test/pending/neg/t5589neg.flags: -------------------------------------------------------------------------------- 1 | -deprecation 2 | -------------------------------------------------------------------------------- /test/pending/pos/no-widen-locals.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings 2 | -------------------------------------------------------------------------------- /test/pending/pos/t5503.flags: -------------------------------------------------------------------------------- 1 | -Xfatal-warnings -------------------------------------------------------------------------------- /test/pending/pos/treecheckers.flags: -------------------------------------------------------------------------------- 1 | -Ycheck:all -------------------------------------------------------------------------------- /test/pending/run/macro-expand-macro-has-context-bound.check: -------------------------------------------------------------------------------- 1 | 43 -------------------------------------------------------------------------------- /test/pending/run/macro-quasiinvalidbody-a.check: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /test/pending/run/macro-quasiinvalidbody-b.check: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /test/pending/run/reify_closure2b.check: -------------------------------------------------------------------------------- 1 | 11 2 | 12 3 | -------------------------------------------------------------------------------- /test/pending/run/reify_closure3b.check: -------------------------------------------------------------------------------- 1 | 11 2 | 12 3 | -------------------------------------------------------------------------------- /test/pending/run/reify_closure4b.check: -------------------------------------------------------------------------------- 1 | 11 2 | 12 3 | -------------------------------------------------------------------------------- /test/pending/run/reify_closure5b.check: -------------------------------------------------------------------------------- 1 | 13 2 | 14 3 | -------------------------------------------------------------------------------- /test/pending/run/reify_closure9a.check: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /test/pending/run/reify_closure9b.check: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /test/pending/run/reify_closures11.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/pending/run/reify_gadts.check: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/pending/run/reify_simpleinterpreter.check: -------------------------------------------------------------------------------- 1 | 42 2 | wrong 3 | -------------------------------------------------------------------------------- /test/pending/run/t5258b.check: -------------------------------------------------------------------------------- 1 | TBI -------------------------------------------------------------------------------- /test/pending/run/t5258c.check: -------------------------------------------------------------------------------- 1 | TBI -------------------------------------------------------------------------------- /test/pending/run/t5427a.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/pending/run/t5427b.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/pending/run/t5427c.check: -------------------------------------------------------------------------------- 1 | no public member -------------------------------------------------------------------------------- /test/pending/run/t5427d.check: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /test/pending/run/t5610b.check: -------------------------------------------------------------------------------- 1 | Stroke a kitten 2 | -------------------------------------------------------------------------------- /test/pending/run/t5692.flags: -------------------------------------------------------------------------------- 1 | -language:experimental.macros -------------------------------------------------------------------------------- /test/pending/run/t6387.check: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /test/pending/run/t7733.check: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /test/pending/run/virtpatmat_anonfun_underscore.flags: -------------------------------------------------------------------------------- 1 | -Yvirtpatmat -------------------------------------------------------------------------------- /test/pending/script/dashi.check: -------------------------------------------------------------------------------- 1 | test.bippy = dingus 2 | -------------------------------------------------------------------------------- /test/pending/script/t2365.javaopts: -------------------------------------------------------------------------------- 1 | -XX:MaxPermSize=25M 2 | -------------------------------------------------------------------------------- /test/pending/shootout/message.check: -------------------------------------------------------------------------------- 1 | 35. -------------------------------------------------------------------------------- /test/pending/shootout/message.javaopts: -------------------------------------------------------------------------------- 1 | -Xss128k 2 | -------------------------------------------------------------------------------- /test/pending/t7629-view-bounds-removal.flags: -------------------------------------------------------------------------------- 1 | -Xfuture 2 | -------------------------------------------------------------------------------- /test/scaladoc/javascript/package.html: -------------------------------------------------------------------------------- 1 | dummy 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-191.check: -------------------------------------------------------------------------------- 1 | Done. -------------------------------------------------------------------------------- /test/scaladoc/run/SI-3314-diagrams.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-3314.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-3448.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-3484.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-4324.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-4360.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-4676.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-4887.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-5373.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-5533.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-5780.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-5784.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-5933.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-5965.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-6017.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-6140.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-6509.check: -------------------------------------------------------------------------------- 1 | Done. -------------------------------------------------------------------------------- /test/scaladoc/run/SI-6511.check: -------------------------------------------------------------------------------- 1 | Done. -------------------------------------------------------------------------------- /test/scaladoc/run/SI-6715.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-6812b.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/SI-7367.check: -------------------------------------------------------------------------------- 1 | Done. -------------------------------------------------------------------------------- /test/scaladoc/run/SI-8479.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/diagrams-base.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/diagrams-determinism.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/diagrams-filtering.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/diagrams-inherited-nodes.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/groups.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/implicits-ambiguating.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/implicits-base.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/implicits-chaining.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/implicits-known-type-classes.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/implicits-scopes.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/implicits-shadowing.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/implicits-var-exp.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/links.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/t4922.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/t5730.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/t7767.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/t7876.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/t8113.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/run/t8557.check: -------------------------------------------------------------------------------- 1 | Done. 2 | -------------------------------------------------------------------------------- /test/scaladoc/scalacheck/HtmlFactoryTest.flags: -------------------------------------------------------------------------------- 1 | -encoding UTF-8 -------------------------------------------------------------------------------- /tools/jar-dump: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | 4 | jar tf "$1" | sort 5 | --------------------------------------------------------------------------------