This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| task <unnamed> failed at 'assertion failed: rp.is_none()', /private/tmp/rust-h4RT/rust-0.8/src/librustc/middle/typeck/collect.rs:1108 | |
| error: internal compiler error: unexpected failure | |
| note: the compiler hit an unexpected failure path. this is a bug | |
| note: try running with RUST_LOG=rustc=1 to get further details and report the results to github.com/mozilla/rust/issues | |
| task <unnamed> failed at 'explicit failure', /private/tmp/rust-h4RT/rust-0.8/src/librustc/rustc.rs:391 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| playground.rs:6:19: 6:28 error: mismatched types: expected `~[(T,&str)]` but found `~[(T,&str)]` (lifetime mismatch) | |
| playground.rs:6 return |s| ~[(p, s)] | |
| ^~~~~~~~~ | |
| playground.rs:6:19: 6:28 note: the lifetime & as defined on the block at 6:19... | |
| playground.rs:6 return |s| ~[(p, s)] | |
| ^~~~~~~~~ | |
| playground.rs:6:19: 6:28 note: ...does not necessarily outlive the lifetime & as defined on the block at 6:19 | |
| playground.rs:6 return |s| ~[(p, s)] | |
| ^~~~~~~~~ | |
| playground.rs:6:8: 6:28 error: cannot infer an appropriate lifetime due to conflicting requirements |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| d_playground.d(38): Error: pure nested function 'a' cannot access mutable data 'this' | |
| d_playground.d(38): Error: pure nested function 'a' cannot access mutable data 'this' | |
| d_playground.d(14): Error: template instance d_playground.value.opBinary!("+", value).opBinary.intermediateValue!(plus, this, rhs) error instantiating | |
| d_playground.d(47): instantiated from here: opBinary!("+", value) | |
| d_playground.d(47): Error: template instance d_playground.value.opBinary!("+", value) error instantiating |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using namespace std; | |
| using boost::optional; | |
| // Implements a parking lot utility: you can ask it for an available space for | |
| // a car of a certain size, ask it to find a car's parking spot given its license | |
| // plate, ask what car is parked in a specific spot, etc. | |
| // This code is organized top down: first the parking_lot class, then | |
| // the distance class ('dist') and some functions to compare IEEE doubles, then | |
| // the structs 'car' and 'parking_space'. I made some assumptions, like that each |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| HOMEBREW_VERSION: 0.9.5 | |
| ORIGIN: https://github.com/Homebrew/homebrew | |
| HEAD: 380fc27e27ec685f2fefebcfab999ace1d8b7dfb | |
| HOMEBREW_PREFIX: /usr/local | |
| HOMEBREW_CELLAR: /usr/local/Cellar | |
| CPU: 8-core 64-bit ivybridge | |
| OS X: 10.9.2-x86_64 | |
| Xcode: 5.1 | |
| CLT: 5.1.0.0.1.1393561416 | |
| Clang: 5.1 build 503 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| a ipython_config.py | |
| a ipython_console_config.py | |
| a ipython_notebook_config.py | |
| a ipython_qtconsole_config.py | |
| a static | |
| a static/base | |
| a static/custom | |
| a static/custom/conceal | |
| a static/custom/custom.css | |
| a static/custom/custom.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module pc.parser; | |
| import std.stdio; | |
| import std.array; | |
| import std.ctype; | |
| import std.string; | |
| import std.conv; | |
| import std.regex; | |
| import std.variant; | |
| import std.functional; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ClassyPrelude.hs:234:9: | |
| Could not deduce (a ~ ()) | |
| from the context (Monad m, MonoFoldable c) | |
| bound by the type signature for | |
| mapM_ :: (Monad m, MonoFoldable c) => | |
| (Element c -> m a) -> c -> m () | |
| at ClassyPrelude.hs:233:10-69 | |
| `a' is a rigid type variable bound by | |
| the type signature for | |
| mapM_ :: (Monad m, MonoFoldable c) => |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # git pre-commit hook that runs an clang-format stylecheck. | |
| # Features: | |
| # - abort commit when commit does not comply with the style guidelines | |
| # - create a patch of the proposed style changes | |
| # modifications for clang-format by [email protected] | |
| # This file is part of a set of unofficial pre-commit hooks available | |
| # at github. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # | |
| #===- git-clang-format - ClangFormat Git Integration ---------*- python -*--===# | |
| # | |
| # The LLVM Compiler Infrastructure | |
| # | |
| # This file is distributed under the University of Illinois Open Source | |
| # License. See LICENSE.TXT for details. | |
| # | |
| #===------------------------------------------------------------------------===# |